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