diff options
| author | Alexander Kassouni <alex@kassouni.net> | 2026-09-27 00:32:26 -0700 |
|---|---|---|
| committer | Alexander Kassouni <alex@kassouni.net> | 2026-09-27 00:32:26 -0700 |
| commit | 1403c2423100e014aae95c2a02191445d9e8b647 (patch) | |
| tree | dc2de145df4d62134e4d17379fc079c71cc8175e /configuration.nix | |
| parent | 2b8facb13cd98baf9b4c6a7dc111702e8279e2c6 (diff) | |
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index 137e2f4..d744b6f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,4 +1,4 @@ -{config, lib, pkgs, ...}: { +{config, ...}: { imports = [ ./hardware-configuration.nix ./minecraft.nix @@ -6,8 +6,14 @@ ./git.nix ./ssh.nix ]; - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + + boot.loader = { + systemd-boot = { + enable = true; + graceful = true; # TODO: drop after v261+ + }; + efi.canTouchEfiVariables = true; + }; networking.networkmanager.enable = true; |
