This commit is contained in:
Till 2023-05-28 02:06:12 +02:00
parent a70d1cac4b
commit b437f162c8
7 changed files with 98 additions and 14 deletions

20
home/desktop/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 32;
};
dconf.settings = {
"org/gnome/desktop/background" = {
picture-uri = ./demand_office.jpg;
};
enabled-extensions = {
"run-or-raise@edvard.cz"
"places-menu@gnome-shell-extensions.gcampax.github.com"
}
};
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
}