t480s.nix (603B)
1 { 2 config, 3 pkgs, 4 homedir, 5 ... 6 }: 7 8 { 9 10 home.packages = with pkgs; [ 11 nextcloud-client 12 nodejs_22 13 pandoc 14 shellcheck 15 ]; 16 17 home.file = { }; 18 19 home.sessionVariables = { }; 20 21 dconf.settings = { 22 "org/gnome/desktop/background" = { 23 picture-uri = "file://${homedir}/Repos/dotfiles/Wallpapers/nix1.png"; 24 picture-uri-dark = "file://${homedir}/Repos/dotfiles/Wallpapers/nix1.png"; 25 }; 26 "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = { 27 binding = "<Super>Return"; 28 command = "kgx"; 29 name = "Launch Terminal"; 30 }; 31 }; 32 33 }