summaryrefslogtreecommitdiff
path: root/sys/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/options.nix')
-rw-r--r--sys/options.nix80
1 files changed, 0 insertions, 80 deletions
diff --git a/sys/options.nix b/sys/options.nix
index 789b489..c266fd5 100644
--- a/sys/options.nix
+++ b/sys/options.nix
@@ -36,11 +36,6 @@ in {
type = listOf str;
};
- snapperSubvols = mkOption {
- type = attrsOf str;
- default = {};
- };
-
crypt = {
toplevel = mkOption {
default = null;
@@ -85,80 +80,5 @@ in {
});
};
};
-
- fs = {
- boot.device = mkOption {
- type = str;
- };
-
- btrfs = mkOption {
- default = [];
-
- type = attrsOf (submodule {
- options = {
- device = mkOption {
- type = str;
- };
-
- subvol = mkOption {
- type = str;
- };
-
- ssd = mkOption {
- type = bool;
- };
-
- snapper = mkOption {
- type = nullOr str;
- default = null;
- };
- };
- });
- };
-
- layout = mkOption {
- default = {};
-
- type = submodule {
- options = {
- sysHddBtrfs = mkOption {
- default = null;
-
- type = nullOr (submodule {
- options = {
- sys = {
- device = mkOption {
- type = str;
- };
-
- ssd = mkOption {
- type = bool;
- };
-
- root = mkOption {
- type = str;
- };
-
- toplevel = mkOption {
- type = str;
- };
- };
-
- hdd = {
- device = mkOption {
- type = str;
- };
-
- home = mkOption {
- type = str;
- };
- };
- };
- });
- };
- };
- };
- };
- };
};
}