diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 11:48:08 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 11:48:08 -0800 |
commit | 123449b56ddf5053a5dd9faa714d5c943e4326ff (patch) | |
tree | 811c76f030592f456c88924c7c5e55a5530c675b /hosts/ginaz | |
parent | 67ae4ffbc4786c8c609bd4d26041dd3d7c0d3e1a (diff) | |
download | nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar.gz nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar.bz2 nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar.lz nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar.xz nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.tar.zst nix-123449b56ddf5053a5dd9faa714d5c943e4326ff.zip |
Fix boot @ginaz
Diffstat (limited to 'hosts/ginaz')
-rw-r--r-- | hosts/ginaz/disks.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/ginaz/disks.nix b/hosts/ginaz/disks.nix index baea2e6..a8b9fd6 100644 --- a/hosts/ginaz/disks.nix +++ b/hosts/ginaz/disks.nix @@ -1,3 +1,4 @@ +{ lib, ... }: { disko.devices = { disk = { @@ -19,6 +20,7 @@ }; }; swap = { + device = lib.mkForce "/dev/disk/by-label/swap"; size = "32G"; type = "8200"; content = { @@ -40,7 +42,7 @@ zpool = { rpool = { type = "zpool"; - rootFsOptions = { + rotFsOptions = { acltype = "posixacl"; canmount = "off"; compression = "on"; |