add: nfs config

This commit is contained in:
FabricSoul 2025-06-08 00:10:27 -04:00
parent 2975de79e2
commit 45a1becdb2
3 changed files with 33 additions and 20 deletions

View file

@ -12,15 +12,24 @@
# Common configurations
../common/global
../common/optional/docker.nix
../common/optional/nfs.nix
];
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = ["zfs"];
boot.zfs.extraPools = ["nas"];
services.zfs.autoScrub.enable = true;
services.zfs.trim.enable = true;
# Networking
networking = {
hostName = "tatara";
hostId = "b47100bc";
networkmanager.enable = true;
useDHCP = lib.mkDefault true;
};