xps15.nix (876B)
1 { 2 config, 3 pkgs, 4 homedir, 5 ... 6 }: 7 8 { 9 10 nix = { 11 package = pkgs.nix; 12 settings.experimental-features = [ "nix-command" "flakes" ]; 13 }; 14 15 home.packages = with pkgs; [ 16 ]; 17 18 home.file = { }; 19 20 home.sessionVariables = { }; 21 22 dconf.settings = { 23 "org/gnome/desktop/background" = { 24 picture-uri = "file://${homedir}/Repos/dotfiles/Wallpapers/fedora1.png"; 25 picture-uri-dark = "file://${homedir}/Repos/dotfiles/Wallpapers/fedora1.png"; 26 }; 27 "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = { 28 binding = "<Super>Return"; 29 command = "gnome-terminal"; 30 name = "Launch Terminal"; 31 }; 32 "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1" = { 33 binding = "<Super>x"; 34 command = "${homedir}/Repos/.local/bin/org-capture-clip.sh"; 35 name = "Org Capture"; 36 }; 37 }; 38 39 }