Fix vps config

This commit is contained in:
mups 2024-07-13 23:55:28 +00:00
parent 51f079d981
commit 33895b9c46
3 changed files with 1 additions and 3 deletions

View file

@ -24,7 +24,6 @@ in {
# Use the GRUB 2 boot loader. # Use the GRUB 2 boot loader.
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda"; boot.loader.grub.device = "/dev/vda";
boot.initrd.checkJournalingFS = false; boot.initrd.checkJournalingFS = false;

View file

@ -25,7 +25,6 @@ in {
]; ];
networking.useDHCP = lib.mkForce false; networking.useDHCP = lib.mkForce false;
networking.hostName = hostname;
networking.domain = ""; networking.domain = "";
networking.interfaces.ens3.ipv4.addresses = [{ address = ip; prefixLength = 24; }]; networking.interfaces.ens3.ipv4.addresses = [{ address = ip; prefixLength = 24; }];

View file

@ -5,6 +5,6 @@
console = if config.mods.xorg.enable then { console = if config.mods.xorg.enable then {
useXkbConfig = true; useXkbConfig = true;
} else { } else {
keymap = "us"; keyMap = "us";
}; };
} }