mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
20 lines
293 B
Nix
20 lines
293 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
desktopManager = {
|
|
xterm = {
|
|
enable = true;
|
|
};
|
|
xfce = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
displayManager = {
|
|
defaultSession = "xfce";
|
|
};
|
|
};
|
|
}
|