Perception back to systemd boot
This commit is contained in:
parent
6b72a5d5a7
commit
9efa381a4c
|
@ -23,7 +23,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = {
|
config = {
|
||||||
setupGrub = true;
|
setupGrub = false;
|
||||||
nix = {
|
nix = {
|
||||||
autoUpdate = true;
|
autoUpdate = true;
|
||||||
autoGC = true;
|
autoGC = true;
|
||||||
|
@ -31,6 +31,12 @@
|
||||||
harden = false;
|
harden = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Configure bootloader
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
boot.kernelParams = [ "net.ifnames=0" ];
|
||||||
# Configure networking
|
# Configure networking
|
||||||
networking = {
|
networking = {
|
||||||
domain = "mccarty.io";
|
domain = "mccarty.io";
|
||||||
|
|
Loading…
Reference in New Issue