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

16 lines
305 B
Nix
Raw Normal View History

2022-03-24 04:00:26 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
in {
options.this.graphical.enable =
mkEnableOption "Does this actually need X/Wayland";
2021-12-14 05:24:26 +00:00
2022-03-24 02:41:33 +00:00
options.this.graphical.protocol = mkOption {
type = types.enum [ "X11" "Wayland" ];
default = null;
};
2022-03-05 03:25:57 +00:00
imports = [ ./applications ./lang ./system ];
2021-12-13 06:13:05 +00:00
}