server-configuration/modules/zfs.nix
2025-03-04 13:45:46 +01:00

16 lines
289 B
Nix
Executable file

{
pkgs,
lib,
...
}: {
boot.zfs.devNodes = "/dev/disk/by-path";
environment.systemPackages = with pkgs; [
zfs
];
# Microvm be fucking shit up
# fileSystems."/nix/store".fsType = lib.mkForce "zfs";
# fileSystems."/nix/store".device = lib.mkForce "zroot/nix/store";
}