xfce/module.nix: init
This commit is contained in:
parent
e1235a2d4b
commit
80c1740ab1
1 changed files with 23 additions and 0 deletions
23
modules/wms/xfce/module.nix
Normal file
23
modules/wms/xfce/module.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
in {
|
||||||
|
services.xserver = {
|
||||||
|
enable = true;
|
||||||
|
desktopManager = {
|
||||||
|
xterm.enable = false;
|
||||||
|
xfce = {
|
||||||
|
enable = true;
|
||||||
|
enableWaylandSession = true;
|
||||||
|
waylandSessionCompositor = lib.getExe pkgs.niri;
|
||||||
|
|
||||||
|
noDesktop = false;
|
||||||
|
enableXfwm = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
services.displayManager.defaultSession = "xfce";
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue