diff options
Diffstat (limited to 'modules/config.nix')
| -rw-r--r-- | modules/config.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/config.nix b/modules/config.nix new file mode 100644 index 0000000..a4b6c79 --- /dev/null +++ b/modules/config.nix @@ -0,0 +1,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"; +} |
