diff options
Diffstat (limited to 'hosts/carmel')
-rw-r--r-- | hosts/carmel/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index 0856337..0234e90 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -9,19 +9,16 @@ ../common/system/boot-ssh.nix ]; - # Use the systemd-boot EFI boot loader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - - boot.initrd = { - luks.devices."system".allowDiscards = true; - kernelModules = [ "igb" ]; + boot = { + # get an IP address on boot, so we can unlock the root disk remotely + kernelParams = [ "ip=dhcp" ]; + initrd = { + luks.devices."system".allowDiscards = true; + # driver for the NIC, required in order to get an IP address + kernelModules = [ "igb" ]; + }; }; - boot.kernelParams = [ "ip=dhcp" ]; - - time.timeZone = "America/Los_Angeles"; - hardware.opengl.driSupport = true; # Use systemd-networkd for networking |