[moderatio] add xserver xfce

This commit is contained in:
2022-10-04 19:18:01 +02:00
parent 10c2a1b5cd
commit 258413dfb8
2 changed files with 15 additions and 0 deletions

View File

@@ -9,6 +9,8 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./zfs.nix
../modules/xserver.nix
];
# Define on which hard drive you want to install Grub.

View File

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