Add ZFS compatibility

This commit is contained in:
Johannes Rothe 2025-03-19 23:18:03 +01:00
parent 079d115d16
commit 3ed8879fe4

View File

@ -24,20 +24,30 @@
device = lib.mkForce "/dev/disk/by-uuid/26973b85-9c65-488b-93fb-8992ea0f8d50"; device = lib.mkForce "/dev/disk/by-uuid/26973b85-9c65-488b-93fb-8992ea0f8d50";
crypttabExtraOpts = [ "tpm2-device=auto" ]; crypttabExtraOpts = [ "tpm2-device=auto" ];
}; };
# Required for ZFS, see https://openzfs.github.io/openzfs-docs/Getting%20Started/NixOS/index.html
supportedFilesystems = [ "zfs" ];
zfs.forceImportRoot = false;
}; };
networking.hostName = "dalinar"; networking = {
networking.nftables.enable = true; hostName = "dalinar";
networking.firewall = { nftables.enable = true;
enable = true; firewall = {
allowedUDPPorts = [ 53 ]; enable = true;
allowedTCPPorts = [ allowedUDPPorts = [ 53 ];
config.services.grafana.settings.server.http_port allowedTCPPorts = [
]; config.services.grafana.settings.server.http_port
];
};
# head -c4 /dev/urandom | od -A none -t x4
# Required for ZFS, see https://openzfs.github.io/openzfs-docs/Getting%20Started/NixOS/index.html
hostId = "0c2ce418";
useNetworkd = true;
}; };
networking.useNetworkd = true;
services.resolved = { services.resolved = {
enable = true; enable = true;
# Unbound is running
extraConfig = '' extraConfig = ''
DNSStubListener=no DNSStubListener=no
''; '';
@ -61,6 +71,7 @@
tmux tmux
vim vim
wget wget
zfs
]; ];
powerManagement.powertop.enable = true; powerManagement.powertop.enable = true;