aboutsummaryrefslogtreecommitdiff
path: root/modules/config.nix
blob: e314a7d4feb36867a124ca7264a276b44b523e0b (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
32
{ ... }:
{
  imports = [
    ./hardware
    ./users
    ./network
    ./media
    ./dashboard
    ./storage
    ./notifications
    ./monitoring
    ./rss
    ./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";
}