{ config, lib, pkgs, ... }: { imports = [ ./key.nix ./networking.nix ./fileshares.nix ]; # Setup bootloader boot._loader.enable = true; # Enable common options _archetypes = { profiles = { headless = { enable = true; home.users.timmy.enable = true; }; zfs.enable = true; #cuda.enable = true; }; collections.virtualization.enable = true; }; # Import zfs pools boot.zfs.extraPools = [ "VMDisk" "Storage" ]; # Enable user timmy _users.timmy.enable = true; # Without this, "ZFS requires networking.hostId to be set" will be raised networking.hostId = "2c7d6b03"; system.stateVersion = "26.05"; }