aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/meta.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/meta.nix')
-rw-r--r--modules/nixos/sils/meta.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/nixos/sils/meta.nix b/modules/nixos/sils/meta.nix
deleted file mode 100644
index 57ef081..0000000
--- a/modules/nixos/sils/meta.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{lib, ...}: let
- nullable = type: lib.types.nullOr type;
-in {
- options.sils.meta = {
- bootPart = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- bootstrapSystem = lib.mkEnableOption;
- globalDataDir = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- hostname = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- mainDisk = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- rootPart = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- system = lib.mkOption {
- type = nullable lib.types.str;
- default = null;
- };
- };
-}