diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
| commit | e776c8fb5aed61d0f5f27a87c9c419dc07a13480 (patch) | |
| tree | bce36bc077042d60c0cc162205440df6b783acdf /machines/khad | |
| parent | 930ed23a02259a35c404f2fef0ab61ca620a0e4b (diff) | |
| parent | 60568d28f263c74847f06ec6bc4c8ba7f7125dce (diff) | |
merge
Diffstat (limited to 'machines/khad')
| -rw-r--r-- | machines/khad/configuration.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index 3f46f5f..1f9c187 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -10,9 +10,14 @@ ./hardware-configuration.nix ]; - # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + # Use the systemd-boot EFI boot loader. + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelPackages = pkgs.linuxPackages_latest; # use latest kernel + }; networking.hostName = "khad"; # Define your hostname. # Pick only one of the below networking options. |
