diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-10-24 11:41:46 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-10-24 11:41:46 +0000 |
| commit | 067471f16bd5b1b310704099ae6914d0375ed7ce (patch) | |
| tree | b3ed947ac199f2e218700ce477ed0882e3fe9083 /modules/client | |
| parent | cleaned up modules (diff) | |
trying out cinnamon
Diffstat (limited to '')
| -rw-r--r-- | modules/client/cinnamon/default.nix | 23 | ||||
| -rw-r--r-- | modules/client/default.nix | 4 |
2 files changed, 25 insertions, 2 deletions
diff --git a/modules/client/cinnamon/default.nix b/modules/client/cinnamon/default.nix new file mode 100644 index 0000000..34fa8bd --- /dev/null +++ b/modules/client/cinnamon/default.nix @@ -0,0 +1,23 @@ +{ + imports = [ + ../xserver + ]; + + services = { + xserver = { + enable = true; + + desktopManager.cinnamon = { + enable = true; + }; + + displayManager.lightdm = { + enable = true; + }; + }; + ## Just in case this isn't automatically enabled + # cinnamon.apps.enable = true + }; + + environment.cinnamon.excludePackages = [ ]; +} diff --git a/modules/client/default.nix b/modules/client/default.nix index 046f61f..ea3f803 100644 --- a/modules/client/default.nix +++ b/modules/client/default.nix @@ -2,8 +2,8 @@ imports = [ ./1password ./bluetooth - # ./cinnamon + ./cinnamon ./flatpak - ./labwc + # ./labwc ]; } |
