This commit is contained in:
Spectre 2025-02-26 23:56:54 +01:00
parent 5f3ac217d6
commit a9d0f1e6b7
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,3 @@
{
system = "x86_64-linux";
}

6
system/boot.nix Normal file
View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
}

View file

@ -1,2 +1,5 @@
{...}: {
imports = [
./boot.nix
];
}