1 { config, pkgs, inputs, lib, ... } @ args:
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;
13 time.timeZone = "Europe/Berlin";
15 # Select internationalisation properties.
16 i18n.defaultLocale = "de_DE.UTF-8";
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";
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?