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