sprich deutsch, hurensohn
This commit is contained in:
parent
c2cda08d69
commit
cd0f907613
4 changed files with 23 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
||||||
hardware-configuration.nix
|
|
||||||
|
|
@ -29,10 +29,15 @@
|
||||||
exec-once = [
|
exec-once = [
|
||||||
];
|
];
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
"$shiftmod" = "SUPER_SHIFT";
|
||||||
bind = [
|
bind = [
|
||||||
"$mod, D, exec, walker"
|
"$mod, D, exec, walker"
|
||||||
|
"$shiftmod, Q, killactive,"
|
||||||
"$mod, return, exec, kitty"
|
"$mod, return, exec, kitty"
|
||||||
];
|
];
|
||||||
|
input = {
|
||||||
|
kb_layout = "de";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
|
||||||
|
|
@ -11,5 +11,6 @@
|
||||||
./shell.nix
|
./shell.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./dm.nix
|
./dm.nix
|
||||||
|
./localization.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
17
system/localization.nix
Normal file
17
system/localization.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
{
|
||||||
|
time = {
|
||||||
|
timeZone = "Europe/Berlin";
|
||||||
|
};
|
||||||
|
i18n = {
|
||||||
|
defaultLocale = "en_GB.UTF-8";
|
||||||
|
};
|
||||||
|
console.keyMap = "de";
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue