Merge pull request 'clan-modules: add xfce-vm module' (#943) from a-kenji-init/vm-module into main
All checks were successful
checks / check-links (push) Successful in 22s
checks / checks-impure (push) Successful in 1m51s
checks / checks (push) Successful in 3m34s

This commit is contained in:
clan-bot 2024-03-12 18:42:19 +00:00
commit 64ec958014
2 changed files with 16 additions and 0 deletions

View File

@ -14,6 +14,7 @@
vm-user = ./vm-user.nix;
graphical = ./graphical.nix;
xfce = ./xfce.nix;
xfce-vm = ./xfce-vm.nix;
zt-tcp-relay = ./zt-tcp-relay.nix;
localsend = ./localsend.nix;
waypipe = ./waypipe.nix;

15
clanModules/xfce-vm.nix Normal file
View 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";
};
}