From c24026dad0fa124d55ace4704709a229dd548406 Mon Sep 17 00:00:00 2001 From: Finn Date: Sat, 1 Jul 2023 13:39:40 +0200 Subject: [PATCH] Updated Nix Config --- flake.nix | 2 +- machines/configuration.nix | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 7af1dd0..5ce0389 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,6 @@ imports = [ ./machines/configurations.nix ]; - systems = [ "x86_64-linux" "aarch64-linux" ]; + systems = [ "x86_64-linux" ]; }; } diff --git a/machines/configuration.nix b/machines/configuration.nix index 8df766e..67ea4ee 100644 --- a/machines/configuration.nix +++ b/machines/configuration.nix @@ -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 = [