mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
chore: clean up code a little
This commit is contained in:
parent
7c8620e3e8
commit
041cad5e7e
1 changed files with 8 additions and 4 deletions
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue