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 ./hardware-configuration.nix
./zfs-config.nix ./zfs-config.nix
./common ./common
./common/sites/fill-me-in ./common/sites/gifford
./common/users/scott
./common/desktop
./common/network-debugging.nix
]; ];
boot.loader = { boot.loader.grub = {
grub = { enable = true;
# Use the GRUB 2 boot loader. device = "/dev/sdb"; # change after install!
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)
}; };
networking = { networking = {
hostName = fill-me-in; # Define your hostname. hostName = "network-debugger"; # Define your hostname.
hostId = fill-me-in; # required by ZFS hostId = "847d8755"; # required by ZFS
# Open ports in the firewall. firewall.enable = false;
firewall.allowedTCPPorts = [ 22 ]; networkmanager.enable = true;
# 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.
}; };
# Set your time zone. # Set your time zone.
time.timeZone = "UTC"; time.timeZone = "America/New_York";
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
@ -51,7 +42,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?
} }