16 lines
273 B
Nix
16 lines
273 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
|
||
|
];
|
||
|
}
|