Add configuration for gamepc

This commit is contained in:
Pim Kunis 2024-11-07 20:47:40 +01:00
parent d3684cdd1f
commit a58aa96a60
8 changed files with 4929 additions and 32 deletions

13
nixos/cinnamon.nix Normal file
View file

@ -0,0 +1,13 @@
{lib, ...}: {
options.pim.cinnamon.enable = lib.mkEnableOption "cinnamon";
config = {
services = {
displayManager.defaultSession = "cinnamon";
libinput.enable = true;
xserver = {
desktopManager.cinnamon.enable = true;
displayManager.lightdm.enable = true;
};
};
};
}