organizing

This commit is contained in:
2025-06-08 18:40:27 -06:00
parent ceb3962833
commit 8a02320f12
3 changed files with 0 additions and 0 deletions

21
environments/cinnamon.nix Normal file
View File

@@ -0,0 +1,21 @@
{ 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 = builtins.attrValues {
inherit (pkgs)
adw-gtk3 # theme legacy applications
papirus-icon-theme # icon theme
;
};
}