clan-modules: add xfce-vm module
A specific module for vm's that don't (yet) support the waypipe module.
This commit is contained in:
@@ -14,6 +14,7 @@
|
|||||||
vm-user = ./vm-user.nix;
|
vm-user = ./vm-user.nix;
|
||||||
graphical = ./graphical.nix;
|
graphical = ./graphical.nix;
|
||||||
xfce = ./xfce.nix;
|
xfce = ./xfce.nix;
|
||||||
|
xfce-vm = ./xfce-vm.nix;
|
||||||
zt-tcp-relay = ./zt-tcp-relay.nix;
|
zt-tcp-relay = ./zt-tcp-relay.nix;
|
||||||
localsend = ./localsend.nix;
|
localsend = ./localsend.nix;
|
||||||
waypipe = ./waypipe.nix;
|
waypipe = ./waypipe.nix;
|
||||||
|
|||||||
15
clanModules/xfce-vm.nix
Normal file
15
clanModules/xfce-vm.nix
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{ config }: {
|
||||||
|
imports = [
|
||||||
|
config.clanCore.clanModules.vm-user
|
||||||
|
config.clanCore.clanModules.graphical
|
||||||
|
];
|
||||||
|
|
||||||
|
services.xserver = {
|
||||||
|
enable = true;
|
||||||
|
displayManager.autoLogin.enable = true;
|
||||||
|
displayManager.autoLogin.user = "user";
|
||||||
|
desktopManager.xfce.enable = true;
|
||||||
|
desktopManager.xfce.enableScreensaver = false;
|
||||||
|
xkb.layout = "us";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user