Some updates to flakes

This commit is contained in:
TheWanderingCrow 2024-09-15 11:23:39 -04:00
parent 92db98ae68
commit b28b94ae17
5 changed files with 15 additions and 53 deletions

9
modules/boot.nix Normal file
View file

@ -0,0 +1,9 @@
{
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
}

View file

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