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

10 lines
244 B
Nix
Raw Normal View History

2021-12-14 05:24:26 +00:00
{ config, pkgs, lib, ... }: {
2021-12-15 05:27:39 +00:00
options.this.graphical.enable = lib.mkOption {
default = false;
type = with lib.types; bool;
description = "Does this actually need X/Wayland";
2021-12-14 05:24:26 +00:00
};
2022-03-05 03:25:57 +00:00
imports = [ ./applications ./lang ./system ];
2021-12-13 06:13:05 +00:00
}