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/options.nix
James Patrick 72b31a08ea Disable additional imports as it causes conflicts.
But this successfully will load all modules recursively.
2022-08-11 23:58:15 -04:00

9 lines
188 B
Nix

{ config, pkgs, lib, ... }: {
options.this.graphical = {
enable = lib.mkEnableOption "Does this actually need X/Wayland";
};
# imports = [ ./applications ./lang ./system ];
}