mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Added a xfce module
This commit is contained in:
parent
306e03b8dd
commit
c974bc0321
@ -2,5 +2,6 @@
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../common/modules.nix
|
||||
../../modules/nixos/xfce.nix # Desktop Enviroment
|
||||
];
|
||||
}
|
||||
|
||||
19
modules/nixos/xfce.nix
Normal file
19
modules/nixos/xfce.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
desktopManager = {
|
||||
xterm = {
|
||||
enable = true;
|
||||
};
|
||||
xfce {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
displayManager = {
|
||||
defaultSession = "xfce";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user