boot windows
This commit is contained in:
parent
7c46fef371
commit
143bd369c4
@ -8,12 +8,27 @@
|
|||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
# ../../modules/nixos/cosmic.nix
|
../../modules/nixos/cosmic.nix
|
||||||
../../modules/nixos/niri.nix
|
# ../../modules/nixos/niri.nix
|
||||||
];
|
];
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader = {
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
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.
|
networking.hostName = "desktop"; # Define your hostname.
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user