Added a xfce module

This commit is contained in:
Alexandre1a 2026-01-16 10:03:19 +01:00
parent 306e03b8dd
commit c974bc0321
No known key found for this signature in database
GPG Key ID: CE01C28FBC5EEF10
2 changed files with 20 additions and 0 deletions

View File

@ -2,5 +2,6 @@
imports = [
./hardware-configuration.nix
../common/modules.nix
../../modules/nixos/xfce.nix # Desktop Enviroment
];
}

19
modules/nixos/xfce.nix Normal file
View File

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
services = {
xserver = {
enable = true;
desktopManager = {
xterm = {
enable = true;
};
xfce {
enable = true;
};
};
};
displayManager = {
defaultSession = "xfce";
};
};
}