actually set up paperwm on the framework

This commit is contained in:
Haak Saxberg 2025-03-14 22:00:18 -07:00
parent fc1075fc52
commit a66ba69b61
3 changed files with 14 additions and 16 deletions

View file

@ -69,6 +69,7 @@
environment.systemPackages = with pkgs; [
cachix
colmena
gnomeExtensions.paperwm
vim
wget
zsh
@ -102,6 +103,18 @@
# List services that you want to enable:
services.dbus.packages = with pkgs; [ dconf ];
### Set dconf to enable PaperWM out of the box
programs.dconf =
{ enable = true;
profiles."user".databases = [
{ settings =
{ "org/gnome/shell" =
{ enabled-extensions = [ "paperwm@paperwm.github.com" ];
};
};
}
];
};
# Enable the OpenSSH daemon.
# services.openssh.enable = true;