flake/users/guanranwang/home-manager/applications/gnome/default.nix
2023-11-29 17:56:30 +08:00

21 lines
404 B
Nix

# why is this placed in ./wm
{pkgs, ...}: {
home.packages =
(with pkgs.gnomeExtensions; [
# GNOME extensions
arcmenu
appindicator
blur-my-shell
caffeine
dash-to-panel
dash-to-dock
gamemode # outdated
just-perfection
kimpanel
])
++ (with pkgs.gnome; [
gnome-tweaks
gnome-software
gnome-shell-extensions
]);
}