diff --git a/cinnamon.nix b/cinnamon.nix new file mode 100644 index 0000000..47e19e7 --- /dev/null +++ b/cinnamon.nix @@ -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 + ]; +} diff --git a/hosts/workstation/configuration.nix b/hosts/workstation/configuration.nix index a49506d..abf652f 100644 --- a/hosts/workstation/configuration.nix +++ b/hosts/workstation/configuration.nix @@ -2,8 +2,7 @@ imports = [ ./hardware-configuration.nix ../../base.nix - ../../gnome.nix - # ../../cosmic.nix + ../../cinnamon.nix ../../pkgs/obs-studio.nix ]; my = {