diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 40cb7fe..4e4b767 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -8,12 +8,27 @@ # Include the results of the hardware scan. ./hardware-configuration.nix inputs.home-manager.nixosModules.default - # ../../modules/nixos/cosmic.nix - ../../modules/nixos/niri.nix + ../../modules/nixos/cosmic.nix + # ../../modules/nixos/niri.nix ]; # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + efi.canTouchEfiVariables = true; + systemd-boot = { + enable = true; + configurationLimit = 5; + consoleMode = "max"; + windows = { + "nvme0n1p1" = { + title = "Windows 11"; + efiDeviceHandle = "FS1"; + sortKey = "a_windows"; + }; + }; + }; + }; + + hardware.enableAllFirmware = true; networking.hostName = "desktop"; # Define your hostname.