[moderatio] add xserver xfce
This commit is contained in:
@@ -9,6 +9,8 @@
|
|||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./zfs.nix
|
./zfs.nix
|
||||||
|
|
||||||
|
../modules/xserver.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Define on which hard drive you want to install Grub.
|
# Define on which hard drive you want to install Grub.
|
||||||
|
|||||||
13
machines/modules/xserver.nix
Normal file
13
machines/modules/xserver.nix
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.xserver = {
|
||||||
|
enable = true;
|
||||||
|
desktopManager = {
|
||||||
|
xterm.enable = false;
|
||||||
|
xfce.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
displayManager.defaultSession = "xfce";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user