From 6c3446997febc1a978cf97be9860504596edd511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Krop=C3=A1=C4=8Dek?= Date: Wed, 13 Nov 2024 21:08:59 +0100 Subject: [PATCH] added windows to boot menu --- hosts/wenar-nix/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/wenar-nix/default.nix b/hosts/wenar-nix/default.nix index 9430957..46b2611 100644 --- a/hosts/wenar-nix/default.nix +++ b/hosts/wenar-nix/default.nix @@ -12,6 +12,15 @@ ./disko.nix ]; + boot.loader.systemd-boot = { + windows = { + "10" = { + title = "Windows 10"; + efiDeviceHandle = "HD2b"; + }; + }; + }; + zramSwap.enable = true; boot.kernelPackages = pkgs.linuxPackages_latest; networking.hostName = "wenar-nix";