This commit is contained in:
parent
ca3c3e756b
commit
7aaf90bc75
2 changed files with 16 additions and 4 deletions
9
modules/desktop/cinnamon-desktop/default.nix
Normal file
9
modules/desktop/cinnamon-desktop/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
flake.modules.nixos.cinnamon-desktop = {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
||||
desktopManager.cinnamon.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,7 +1,13 @@
|
|||
{ inputs, ... }:
|
||||
|
||||
{
|
||||
flake.modules.nixos."nixosConfigurations/lemp11" =
|
||||
{ pkgs,stateVersion, ... }:
|
||||
{ pkgs, stateVersion, ... }:
|
||||
{
|
||||
imports = with inputs.self.modules.nixos; [
|
||||
cinnamon-desktop
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
|
|
@ -27,9 +33,6 @@
|
|||
LC_TIME = "en_GB.UTF-8";
|
||||
};
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.xserver.desktopManager.cinnamon.enable = true;
|
||||
|
||||
services.xserver.xkb = {
|
||||
layout = "gb";
|
||||
variant = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue