Regenerated

This commit is contained in:
2026-03-31 18:45:58 +00:00
parent 8a59d9e449
commit 63a6f1bbfd
3 changed files with 295 additions and 337 deletions
+5 -19
View File
@@ -2,17 +2,11 @@
let
hostname = "traveldroid";
modulesPath = "${flakeRoot}/generated/modules/${hostname}";
hostModules = import-tree modulesPath;
allModules = hostModules.imports;
in
{
#################################
# Core system config
#################################
networking.hostName = hostname;
system.stateVersion = "26.05";
@@ -20,18 +14,12 @@ in
# Locale
#################################
# Ensure glibc actually builds nl_NL.UTF-8
nixpkgs.overlays = [
(self: super: {
glibcLocales = super.glibcLocales.overrideAttrs (old: {
locales = old.locales ++ [ "nl_NL.UTF-8" "en_US.UTF-8" ];
});
})
];
i18n = {
defaultLocale = "nl_NL.UTF-8";
supportedLocales = [ "nl_NL.UTF-8" "en_US.UTF-8" ];
extraLocales = [
"nl_NL.UTF-8/UTF-8"
"en_US.UTF-8/UTF-8"
];
consoleKeyMap = "us";
};
@@ -47,7 +35,7 @@ in
./hardware-configuration.nix
]
++ allModules
++ [ home-manager.nixosModules.home-manager ]; # import HM last
++ [ home-manager.nixosModules.home-manager ];
#################################
# Home Manager integration
@@ -56,11 +44,9 @@ in
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
# Install dconf for the system/user
environment.systemPackages = [
pkgs.dconf
];
# Ensure Home Manager writes dconf safely
programs.dconf.enable = true;
}