diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index c8a2ccd..56a384b 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -2,21 +2,12 @@ { networking.hostName = "laptop"; networking.networkmanager.enable = true; - #boot.loader.systemd-boot.enable = true; - #boot.loader.efi.canTouchEfiVariables = true; - boot.loader = { - efi = { - canTouchEfiVariables = true; - efiSysMountPoint = "/boot/efi"; # ← use the same mount point here. - }; - grub = { - efiSupport = true; - #efiInstallAsRemovable = true; # in case canTouchEfiVariables doesn't work for your system - device = "nodev"; - }; -}; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + boot.loader.timeout = 5; + imports = [ - ../../modules + ../../modules ./hardware.nix inputs.home-manager.nixosModules.default ];