mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
made dummy option for deadnix to shutup about disko update flake.lock stopped using neovim overlay
21 lines
385 B
Nix
21 lines
385 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.localModules.DE.xfce;
|
|
in {
|
|
options.localModules.DE.xfce = {
|
|
enable = lib.mkEnableOption "";
|
|
};
|
|
config = lib.mkIf cfg.enable {
|
|
services.xserver = {
|
|
enable = true;
|
|
desktopManager.xfce = {
|
|
enable = true;
|
|
enableScreensaver = true;
|
|
};
|
|
displayManager.defaultSession = "xfce";
|
|
};
|
|
};
|
|
}
|