aboutsummaryrefslogtreecommitdiff
path: root/modules/config.nix
blob: a4b6c791a94c21a2f06ec3425e3f8eb669a62b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ ... }:
{
  imports = [
    ./hardware
    ./users
    ./network
    ./media
    ./dashboard
    ./storage
    ./notifications
    ./monitoring
    ./packages.nix
  ];

  time.timeZone = "Asia/Kolkata";
  i18n.defaultLocale = "en_GB.UTF-8";

  nix = {
    settings = {
      experimental-features = [ "nix-command" "flakes" ];
      auto-optimise-store = true;
    };
    gc = {
      automatic = true;
      dates = "weekly";
    };
  };
  nixpkgs.config.allowUnfree = true;

  system.stateVersion = "25.05";
}