16 lines
No EOL
266 B
Nix
16 lines
No EOL
266 B
Nix
{config, pkgs, lib, ...}:
|
|
|
|
let
|
|
cfg = config.modules.graphical;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
modules.graphical.enable = lib.mkEnableOption "Enable the GUI";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.niri.enable = true;
|
|
services.displayManager.ly.enable = true;
|
|
};
|
|
} |