list concatenation

This commit is contained in:
2024-12-18 13:30:55 -06:00
parent e05e6fcb45
commit 181babfa2a
4 changed files with 77 additions and 90 deletions

View File

@@ -36,25 +36,20 @@
enable = true;
style = "adwaita";
};
users.users.jawz.packages =
builtins.attrValues {
inherit (pkgs)
adw-gtk3 # theme legacy applications
gnome-tweaks # tweaks for the gnome desktop environment
papirus-icon-theme # icon theme
libgda # for pano shell extension
;
}
++ builtins.attrValues {
inherit (pkgs.gnomeExtensions)
appindicator # applets for open applications
tactile # window manager
freon # hardware temperature monitor
gamemode-shell-extension # I guess I'm a gamer now?
burn-my-windows # special effects for when closing windows
;
}
++ [
inputs.jawz-scripts.packages.x86_64-linux.pano
];
users.users.jawz.packages = builtins.attrValues {
inherit (pkgs)
# adw-gtk3 # theme legacy applications
libgda # for pano shell extension
;
inherit (pkgs.gnomeExtensions)
appindicator # applets for open applications
tactile # window manager
freon # hardware temperature monitor
gamemode-shell-extension # I guess I'm a gamer now?
burn-my-windows # special effects for when closing windows
;
inherit (inputs.jawz-scripts.packages.x86_64-linux)
pano
;
};
}