Fill in required values

This commit is contained in:
D. Scott Boggs 2023-12-19 09:28:37 -05:00
parent 9fa7fd4e3c
commit eaabc1b2ca

View file

@ -6,7 +6,8 @@
./hardware-configuration.nix
./zfs-config.nix
./common
./common/sites/fill-me-in
./common/sites/gifford
./common/server
];
boot.loader = {
@ -17,14 +18,14 @@
# efiSupport = true;
# efiInstallAsRemovable = false;
# Define on which hard drive you want to install Grub.
device = fill-me-in; # or "nodev" for efi only
device = "/dev/disk/by-uuid/caab3f5b-b264-4070-8a98-fb267ed31280"; # or "nodev" for efi only
};
# efi.efiSysMountPoint = "/boot/efi"; # (part of the generated default)
};
networking = {
hostName = fill-me-in; # Define your hostname.
hostId = fill-me-in; # required by ZFS
hostName = "gifford-compute-1"; # Define your hostname.
hostId = "00806fc9"; # required by ZFS
# Open ports in the firewall.
firewall.allowedTCPPorts = [ 22 ];
# firewall.allowedUDPPorts = [ ... ];
@ -51,7 +52,7 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = fill-me-in; # Did you read the comment?
system.stateVersion = "23.11"; # Did you read the comment?
}