diff options
author | Karel Kočí <cynerd@email.cz> | 2022-05-29 18:17:34 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-11 10:35:49 +0200 |
commit | bce33fefa7b8bb3f12e720d786a9c6f8f93ce772 (patch) | |
tree | aaed57cd8096e4d5d580f384382bb621c2649b92 /nixos | |
parent | ff51c8717be66826843d6304708fc1f0ff7cd48c (diff) | |
download | nixturris-bce33fefa7b8bb3f12e720d786a9c6f8f93ce772.tar.gz nixturris-bce33fefa7b8bb3f12e720d786a9c6f8f93ce772.tar.bz2 nixturris-bce33fefa7b8bb3f12e720d786a9c6f8f93ce772.zip |
nixos/modules/turris-defaults: set BTRFS as supported FS
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/turris-defaults.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/turris-defaults.nix b/nixos/modules/turris-defaults.nix index 01c3deb..dc2aeb5 100644 --- a/nixos/modules/turris-defaults.nix +++ b/nixos/modules/turris-defaults.nix @@ -51,6 +51,7 @@ in { # The supported deployment is on BTRFS boot.supportedFilesystems = [ "btrfs" ]; + boot.initrd.supportedFilesystems = [ "btrfs" ]; # Cover nix memory consumption peaks by compressing the RAM zramSwap = { |