From eaabc1b2cac6c1540b7e5ba07c13c525a4cba6b9 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Tue, 19 Dec 2023 09:28:37 -0500 Subject: [PATCH] Fill in required values --- configuration.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/configuration.nix b/configuration.nix index edff3b1..1a7e9d4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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? }