sourcephile
/
git
/
sourcephile-nix.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7f4ca1
)
zfs: add lzop and mbuffer for syncoid
author
Julien Moutinho
<julm@sourcephile.fr>
Wed, 25 Nov 2020 20:54:52 +0000
(21:54 +0100)
committer
Julien Moutinho
<julm@sourcephile.fr>
Wed, 25 Nov 2020 20:54:52 +0000
(21:54 +0100)
nixos/profiles/systems/zfs.nix
patch
|
blob
|
history
diff --git
a/nixos/profiles/systems/zfs.nix
b/nixos/profiles/systems/zfs.nix
index 212ec2cf93578adb32046d675fea960612f81571..6b4dd10f9caaedd66a289f535d7a07c0269baab7 100644
(file)
--- a/
nixos/profiles/systems/zfs.nix
+++ b/
nixos/profiles/systems/zfs.nix
@@
-20,4
+20,10
@@
boot.zfs.requestEncryptionCredentials = lib.mkDefault true;
# Enables periodic scrubbing of ZFS pools.
services.zfs.autoScrub.enable = true;
+
+# Add tools useful with zfs send/receive
+environment.systemPackages = [
+ pkgs.lzop
+ pkgs.mbuffer
+];
}