Finish testing. Hardware incompatible. Abandoning this path

This commit is contained in:
D. Scott Boggs 2024-01-19 15:10:30 -05:00
parent 1a3ca2d50e
commit 0634359018

View file

@ -6,35 +6,26 @@
./hardware-configuration.nix
./zfs-config.nix
./common
./common/sites/fill-me-in
./common/sites/gifford
./common/users/scott
./common/desktop
./common/network-debugging.nix
];
boot.loader = {
grub = {
# Use the GRUB 2 boot loader.
enable = true;
version = 2;
# efiSupport = true;
# efiInstallAsRemovable = false;
# Define on which hard drive you want to install Grub.
device = fill-me-in; # or "nodev" for efi only
};
# efi.efiSysMountPoint = "/boot/efi"; # (part of the generated default)
boot.loader.grub = {
enable = true;
device = "/dev/sdb"; # change after install!
};
networking = {
hostName = fill-me-in; # Define your hostname.
hostId = fill-me-in; # required by ZFS
# Open ports in the firewall.
firewall.allowedTCPPorts = [ 22 ];
# firewall.allowedUDPPorts = [ ... ];
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# networkmanager.enable = true; # Easiest to use and most distros use this by default.
hostName = "network-debugger"; # Define your hostname.
hostId = "847d8755"; # required by ZFS
firewall.enable = false;
networkmanager.enable = true;
};
# Set your time zone.
time.timeZone = "UTC";
time.timeZone = "America/New_York";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
@ -51,7 +42,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?
}