sprich deutsch, hurensohn

This commit is contained in:
marty 2025-12-18 16:50:52 +01:00
parent c2cda08d69
commit cd0f907613
4 changed files with 23 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
hardware-configuration.nix

View file

@ -29,10 +29,15 @@
exec-once = [
];
"$mod" = "SUPER";
"$shiftmod" = "SUPER_SHIFT";
bind = [
"$mod, D, exec, walker"
"$shiftmod, Q, killactive,"
"$mod, return, exec, kitty"
];
input = {
kb_layout = "de";
};
};
};
home.sessionVariables.NIXOS_OZONE_WL = "1";

View file

@ -11,5 +11,6 @@
./shell.nix
./networking.nix
./dm.nix
./localization.nix
];
}

17
system/localization.nix Normal file
View file

@ -0,0 +1,17 @@
{
config,
pkgs,
lib,
...
}:
{
time = {
timeZone = "Europe/Berlin";
};
i18n = {
defaultLocale = "en_GB.UTF-8";
};
console.keyMap = "de";
}