Zeit passiert

This commit is contained in:
mtgmonkey
2025-11-28 21:40:30 +01:00
parent ed5b9ace59
commit d2dc5b2ef4
5 changed files with 280 additions and 28 deletions

View File

@@ -9,6 +9,7 @@
];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_hardened;
security.allowUserNamespaces = true;
services.logrotate.checkConfig = false; # per https://discourse.nixos.org/t/logrotate-config-fails-due-to-missing-group-30000/28501/9
boot.loader = {
@@ -32,6 +33,8 @@
defaultSession = "none+xmonad";
};
programs.steam.enable = true;
programs.niri.enable = true;
programs.sway.enable = true;
services.libinput.enable = true;
@@ -52,11 +55,22 @@
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
hardware.opengl.enable = true;
services.blueman.enable = true;
time.timeZone = "America/New_York";
services.printing.enable = true;
i18n.defaultLocale = "en_US.UTF-8";
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "de_DE.UTF-8";
users.users.mtgmonkey = {
isNormalUser = true;