diff --git a/flake.lock b/flake.lock index 9f139bb..7f2b0d8 100644 --- a/flake.lock +++ b/flake.lock @@ -273,11 +273,11 @@ }, "nur": { "locked": { - "lastModified": 1704551462, - "narHash": "sha256-erYQz1jgJYvUKNooJSnkfEmLi9p96UYisq7c8ii0O68=", + "lastModified": 1704554033, + "narHash": "sha256-4sgRZyamI4sh6VRk3kgkM/ojW+KCc4iDD0RRa4ed/7k=", "owner": "nix-community", "repo": "nur", - "rev": "771d345e77cd35f339bb03c6f61bf619ea25ff41", + "rev": "3fbed9bd2b3c6eced12baea4b61b3a060cd39b8d", "type": "github" }, "original": { diff --git a/modules/system/default.nix b/modules/system/default.nix index 48655f4..c7e398a 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -33,8 +33,14 @@ documentation.nixos.enable = false; # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + grub = { + enable = true; + efiSupport = true; + device = "nodev"; + useOSProber = true; + }; + }; # Enable networking networking.networkmanager.enable = true;