trying out cinnamon

This commit is contained in:
2024-09-03 16:28:01 -06:00
parent 21f7f53706
commit fc3cf627d2
2 changed files with 19 additions and 2 deletions

18
cinnamon.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, ... }: {
services = {
libinput.enable = true;
xserver = {
enable = true;
displayManager.lightdm.enable = true;
desktopManager.cinnamon.enable = true;
};
};
qt = {
enable = true;
style = "adwaita";
};
users.users.jawz.packages = with pkgs; [
adw-gtk3 # theme legacy applications
papirus-icon-theme # icon theme
];
}