diff options
| author | Fuwn <[email protected]> | 2024-09-23 16:17:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-23 16:17:47 -0700 |
| commit | 70b0e24edab7a9d689768f4b694f92e8697e231e (patch) | |
| tree | 9b88b13fb9976eab750f691178bed800e203cf2f /modules/options/nix.nix | |
| parent | kansai: move default module to host (diff) | |
| download | nixos-config-70b0e24edab7a9d689768f4b694f92e8697e231e.tar.xz nixos-config-70b0e24edab7a9d689768f4b694f92e8697e231e.zip | |
options: move modules to modules
Diffstat (limited to 'modules/options/nix.nix')
| -rw-r--r-- | modules/options/nix.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/options/nix.nix b/modules/options/nix.nix new file mode 100644 index 0000000..bd831dc --- /dev/null +++ b/modules/options/nix.nix @@ -0,0 +1,7 @@ +{ lib, ... }: +{ + options.modules.nix.extend = lib.options.mkOption { + default = true; + type = lib.types.bool; + }; +} |