boot
This commit is contained in:
parent
5f3ac217d6
commit
a9d0f1e6b7
3 changed files with 12 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
system = "x86_64-linux";
|
||||
}
|
||||
6
system/boot.nix
Normal file
6
system/boot.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
}
|
||||
|
|
@ -1,2 +1,5 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./boot.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue