From 33895b9c4654490e4964c4b64999859e35f3ebbc Mon Sep 17 00:00:00 2001 From: mups Date: Sat, 13 Jul 2024 23:55:28 +0000 Subject: [PATCH] Fix vps config --- hosts/mups/configuration.nix | 1 - hosts/mups/hardware-configuration.nix | 1 - modules/nixos/system/locale.nix | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/mups/configuration.nix b/hosts/mups/configuration.nix index e5252ee..cec0d1a 100644 --- a/hosts/mups/configuration.nix +++ b/hosts/mups/configuration.nix @@ -24,7 +24,6 @@ in { # Use the GRUB 2 boot loader. boot.loader.grub.enable = true; - boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; boot.initrd.checkJournalingFS = false; diff --git a/hosts/mups/hardware-configuration.nix b/hosts/mups/hardware-configuration.nix index 2f912e7..6b37625 100644 --- a/hosts/mups/hardware-configuration.nix +++ b/hosts/mups/hardware-configuration.nix @@ -25,7 +25,6 @@ in { ]; networking.useDHCP = lib.mkForce false; - networking.hostName = hostname; networking.domain = ""; networking.interfaces.ens3.ipv4.addresses = [{ address = ip; prefixLength = 24; }]; diff --git a/modules/nixos/system/locale.nix b/modules/nixos/system/locale.nix index 280795b..05dd965 100644 --- a/modules/nixos/system/locale.nix +++ b/modules/nixos/system/locale.nix @@ -5,6 +5,6 @@ console = if config.mods.xorg.enable then { useXkbConfig = true; } else { - keymap = "us"; + keyMap = "us"; }; }