From 34bc5257850a0c9488a2531c1c8b74de2ba94c77 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Wed, 18 Mar 2026 16:07:35 +0000 Subject: [PATCH] New structure since I kept struggling with the home-manager implemnentation --- Droidnix/README.org | 3 +-- Droidnix/flake.nix | 1 + Droidnix/generated/modules/system/locale.nix | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index 86c09e262..ec7618ad5 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -100,6 +100,7 @@ The Nix flake definition for Droidnix. { # flake-parts requires you to define systems systems = [ "x86_64-linux" ]; + modules = [ inputs.stylix.nixosModules.default]; imports = [ (import-tree ./generated/modules) # Auto-loads your modules .generated/hosts/traveldroid/traveldroid.nix # Explicitly load grouped host @@ -153,9 +154,7 @@ in config = lib.mkIf (coreEnabled || config.mySystem.system.locale.enable) { time.timeZone = "Europe/Amsterdam"; - i18n.defaultLocale = "nl_NL.UTF-8"; - i18n.extraLocaleSettings = { LC_ADDRESS = "nl_NL.UTF-8"; LC_IDENTIFICATION = "nl_NL.UTF-8"; diff --git a/Droidnix/flake.nix b/Droidnix/flake.nix index 49aafd1fa..114a77cb1 100644 --- a/Droidnix/flake.nix +++ b/Droidnix/flake.nix @@ -28,6 +28,7 @@ { # flake-parts requires you to define systems systems = [ "x86_64-linux" ]; + modules = [ inputs.stylix.nixosModules.default]; imports = [ (import-tree ./generated/modules) # Auto-loads your modules .generated/hosts/traveldroid/traveldroid.nix # Explicitly load grouped host diff --git a/Droidnix/generated/modules/system/locale.nix b/Droidnix/generated/modules/system/locale.nix index 46005c991..acf3ce7cd 100644 --- a/Droidnix/generated/modules/system/locale.nix +++ b/Droidnix/generated/modules/system/locale.nix @@ -10,9 +10,7 @@ in config = lib.mkIf (coreEnabled || config.mySystem.system.locale.enable) { time.timeZone = "Europe/Amsterdam"; - i18n.defaultLocale = "nl_NL.UTF-8"; - i18n.extraLocaleSettings = { LC_ADDRESS = "nl_NL.UTF-8"; LC_IDENTIFICATION = "nl_NL.UTF-8";