diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-09-18 23:52:24 -0700 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-09-18 23:52:24 -0700 |
| commit | e4b2dd39be50f7bf064a2a57076f75317b5ebad0 (patch) | |
| tree | 309711f7bb92c07a4e411fee86707e1168b078a1 /nix/modules | |
| parent | 6800e6022fdafbc236097dc90ad128363d6fcd1d (diff) | |
fix installer; fix continuity again
Diffstat (limited to 'nix/modules')
| -rw-r--r-- | nix/modules/docker.nix | 1 | ||||
| -rw-r--r-- | nix/modules/impermanence.nix | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/nix/modules/docker.nix b/nix/modules/docker.nix index 1168341..ac2c456 100644 --- a/nix/modules/docker.nix +++ b/nix/modules/docker.nix @@ -6,7 +6,6 @@ containers = {}; }; containers.enable = true; - docker.enable = true; podman = { enable = true; dockerCompat = true; diff --git a/nix/modules/impermanence.nix b/nix/modules/impermanence.nix index aceb6fc..e5308ac 100644 --- a/nix/modules/impermanence.nix +++ b/nix/modules/impermanence.nix @@ -2,7 +2,7 @@ { assertions = [ { - assertion = (! config.monorepo.profiles.impermanence.enable && (! (config.monorepo.vars.fileSystem == "btrfs"))); + assertion = (! (config.monorepo.profiles.impermanence.enable && (! (config.monorepo.vars.fileSystem == "btrfs")))); message = "Impermanence requires btrfs filesystem."; } ]; |
