diff options
| author | Fuwn <[email protected]> | 2024-09-19 15:52:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-19 15:52:36 -0700 |
| commit | 875af84f8185650cc26baef1939741527bbbaefc (patch) | |
| tree | 05cbd9581f3aefecde2b34817db2e7207d43a256 /modules/options.nix | |
| parent | himeji: add docker volume (diff) | |
| download | nixos-config-875af84f8185650cc26baef1939741527bbbaefc.tar.xz nixos-config-875af84f8185650cc26baef1939741527bbbaefc.zip | |
modules: nix options
Diffstat (limited to 'modules/options.nix')
| -rw-r--r-- | modules/options.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/options.nix b/modules/options.nix new file mode 100644 index 0000000..bd831dc --- /dev/null +++ b/modules/options.nix @@ -0,0 +1,7 @@ +{ lib, ... }: +{ + options.modules.nix.extend = lib.options.mkOption { + default = true; + type = lib.types.bool; + }; +} |