This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/displaymanager.nix

20 lines
396 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
cfg = config.system.displaymanager;
graphical = config.this.graphical;
in with lib; {
options = {
system.displaymanager.enable = mkOption {
2022-03-24 04:00:26 +00:00
default = graphical.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
2022-03-27 02:04:53 +00:00
displayManager = { gdm.enable = true; };
};
};
}