refactor some modules

This commit is contained in:
2025-11-03 20:39:12 +00:00
parent b444354e05
commit 8bc5b9d786
9 changed files with 402 additions and 329 deletions

View File

@@ -0,0 +1,18 @@
{
lib,
config,
...
}:
{
imports = [ ../desktop ];
config = {
services.xserver = {
desktopManager.xfce.enable = true;
};
services.displayManager = {
defaultSession = lib.mkForce "xfce";
};
};
}