]> gitweb.ps.run Git - flake_thinkpad/blob - config-system.nix
845d98d1b93919a910445b166cf30100a30461da
[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   nix.settings.experimental-features = [ "nix-command" "flakes" ];
8   nix.settings.download-buffer-size = 500000000;
9   nix.settings.trusted-users = ["root" "ps"];
10   nixpkgs.config.allowUnfree = true;
11
12   # Set your time zone.
13   time.timeZone = "Europe/Berlin";
14
15   # Select internationalisation properties.
16   i18n.defaultLocale = "de_DE.UTF-8";
17
18   i18n.extraLocaleSettings = {
19     LC_ADDRESS = "de_DE.UTF-8";
20     LC_IDENTIFICATION = "de_DE.UTF-8";
21     LC_MEASUREMENT = "de_DE.UTF-8";
22     LC_MONETARY = "de_DE.UTF-8";
23     LC_NAME = "de_DE.UTF-8";
24     LC_NUMERIC = "de_DE.UTF-8";
25     LC_PAPER = "de_DE.UTF-8";
26     LC_TELEPHONE = "de_DE.UTF-8";
27     LC_TIME = "de_DE.UTF-8";
28   };
29
30   # This value determines the NixOS release from which the default
31   # settings for stateful data, like file locations and database versions
32   # on your system were taken. It‘s perfectly fine and recommended to leave
33   # this value at the release version of the first install of this system.
34   # Before changing this value read the documentation for this option
35   # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
36   system.stateVersion = "24.05"; # Did you read the comment?
37 }