Add ZFS compatibility
This commit is contained in:
parent
079d115d16
commit
3ed8879fe4
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user