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/default.nix
James Patrick 94613c579e Refactor
2022-03-24 00:00:26 -04:00

16 lines
305 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
in {
options.this.graphical.enable =
mkEnableOption "Does this actually need X/Wayland";
options.this.graphical.protocol = mkOption {
type = types.enum [ "X11" "Wayland" ];
default = null;
};
imports = [ ./applications ./lang ./system ];
}