chore: clean up code a little

This commit is contained in:
Ahwx 2024-07-15 07:43:36 +02:00
parent 7c8620e3e8
commit 041cad5e7e

View file

@ -8,10 +8,14 @@
# kvm/qemu doesn't use UEFI firmware mode by default. # kvm/qemu doesn't use UEFI firmware mode by default.
# so we force-override the setting here # so we force-override the setting here
# and configure GRUB instead. # and configure GRUB instead.
boot.loader.systemd-boot.enable = lib.mkForce false; boot.loader = {
boot.loader.grub.enable = true; systemd-boot.enable = lib.mkForce false;
boot.loader.grub.device = "/dev/vda"; grub = {
boot.loader.grub.useOSProber = false; enable = true;
device = "/dev/vda";
useOSProber = false;
};
};
# allow local remote access to make it easier to toy around with the system # allow local remote access to make it easier to toy around with the system
services.openssh = { services.openssh = {