diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-08-08 03:53:33 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-08-08 03:55:09 -0600 |
| commit | 829102167e61ece218c33b83141b81b78cdf6087 (patch) | |
| tree | c904377da29368698be9edfbf5f3d23332533648 /sys/options.nix | |
| parent | f86be644309028046732c254fb5d0e80bc58dfff (diff) | |
sys/fs: move fs config out of sys/default.nix
Diffstat (limited to 'sys/options.nix')
| -rw-r--r-- | sys/options.nix | 80 |
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; - }; - }; - }; - }); - }; - }; - }; - }; - }; }; } |
