From 4d6450900bceba0707fc86711e807a2bb9ba4e87 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Sat, 5 Oct 2024 17:47:24 -0700 Subject: [PATCH] update machine config --- machines/k3s-nix/configuration.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/machines/k3s-nix/configuration.nix b/machines/k3s-nix/configuration.nix index a7171eb..f18b2ff 100644 --- a/machines/k3s-nix/configuration.nix +++ b/machines/k3s-nix/configuration.nix @@ -13,17 +13,17 @@ boot.loader.systemd-boot.enable = true; # Use the GRUB 2 boot loader. - #boot.loader.grub.enable = true; + boot.loader.grub.enable = true; #boot.loader.grub.device = "/dev/sda3"; - #boot.loader.grub.useOSProber = true; - #boot.loader.grub.efiSupport = true; - #boot.loader.grub.efiInstallAsRemovable = true; - #boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.loader.grub.useOSProber = true; + boot.loader.grub.efiSupport = true; + boot.loader.grub.efiInstallAsRemovable = true; + boot.loader.efi.efiSysMountPoint = "/boot/efi"; # Define on which hard drive you want to install Grub. - # boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only + boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only - # networking.hostName = "nixos"; # Define your hostname. + networking.hostName = "k3s-nix"; # Define your hostname. # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.