]> gitweb.ps.run Git - flake_thinkpad/blob - config-system.nix
update
[flake_thinkpad] / config-system.nix
1 { config, pkgs, inputs, lib, ... } @ args:
2 {
3   boot.tmp.cleanOnBoot = true;
4   nix.settings.experimental-features = [ "nix-command" "flakes" ];
5   nix.settings.download-buffer-size = 500000000;
6   nix.settings.trusted-users = ["root" "ps"];
7   nixpkgs.config.allowUnfree = true;
8
9   # Set your time zone.
10   time.timeZone = "Europe/Berlin";
11
12   # Select internationalisation properties.
13   i18n.defaultLocale = "de_DE.UTF-8";
14
15   i18n.extraLocaleSettings = {
16     LC_ADDRESS = "de_DE.UTF-8";
17     LC_IDENTIFICATION = "de_DE.UTF-8";
18     LC_MEASUREMENT = "de_DE.UTF-8";
19     LC_MONETARY = "de_DE.UTF-8";
20     LC_NAME = "de_DE.UTF-8";
21     LC_NUMERIC = "de_DE.UTF-8";
22     LC_PAPER = "de_DE.UTF-8";
23     LC_TELEPHONE = "de_DE.UTF-8";
24     LC_TIME = "de_DE.UTF-8";
25   };
26
27   nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
28 }