Compare commits

..

3 commits

Author SHA1 Message Date
9b0144cb21 updated 2024-11-13 21:36:56 +01:00
3d1a942c5c partition manager 2024-11-13 21:12:07 +01:00
6c3446997f added windows to boot menu 2024-11-13 21:08:59 +01:00
3 changed files with 14 additions and 3 deletions

View file

@ -57,11 +57,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1731332224, "lastModified": 1731403644,
"narHash": "sha256-0ctfVp27ingWtY7dbP5+QpSQ98HaOZleU0teyHQUAw0=", "narHash": "sha256-T9V7CTucjRZ4Qc6pUEV/kpgNGzQbHWfGcfK6JJLfUeI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "184687ae1a3139faa4746168baf071f60d0310c8", "rev": "f6581f1c3b137086e42a08a906bdada63045f991",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -12,6 +12,15 @@
./disko.nix ./disko.nix
]; ];
boot.loader.systemd-boot = {
windows = {
"10" = {
title = "Windows 10";
efiDeviceHandle = "HD2b";
};
};
};
zramSwap.enable = true; zramSwap.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "wenar-nix"; networking.hostName = "wenar-nix";

View file

@ -23,5 +23,7 @@ in
displayManager.sddm.wayland.enable = true; displayManager.sddm.wayland.enable = true;
desktopManager.plasma6.enable = true; desktopManager.plasma6.enable = true;
}; };
programs.partition-manager.enable = true;
}; };
} }