1
0
forked from clan/clan-core

clanModules: add xfce/dino

This commit is contained in:
Jörg Thalheim 2023-10-31 12:49:51 +01:00
parent 0590e4456a
commit 3fd7b4ef29
3 changed files with 12 additions and 0 deletions

3
clanModules/dino.nix Normal file
View File

@ -0,0 +1,3 @@
{ pkgs, ... }: {
environment.systemPackages = [ pkgs.dino ];
}

View File

@ -8,5 +8,7 @@
];
})
(builtins.readDir ./diskLayouts);
dino = ./dino.nix;
xfce = ./xfce.nix;
};
}

7
clanModules/xfce.nix Normal file
View File

@ -0,0 +1,7 @@
{
services.xserver = {
enable = true;
desktopManager.xfce.enable = true;
layout = "us";
};
}