Updated Nix Config

This commit is contained in:
2023-07-01 13:39:40 +02:00
parent 7c1aa9a808
commit c24026dad0
2 changed files with 21 additions and 3 deletions
+1 -1
View File
@@ -13,6 +13,6 @@
imports = [
./machines/configurations.nix
];
systems = [ "x86_64-linux" "aarch64-linux" ];
systems = [ "x86_64-linux" ];
};
}
+20 -2
View File
@@ -4,9 +4,7 @@ let
(self.inputs)
nixpkgs
nixpkgs-unstable
sops-nix
nixos-hardware
passworts
;
nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem;
overlay-unstable = final: prev: {
@@ -15,6 +13,26 @@ let
config.allowUnfree = true;
};
};
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
customModules = import ./core/default.nix;
baseModules = [