aboutsummaryrefslogtreecommitdiff
path: root/modules/config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/config.nix')
-rw-r--r--modules/config.nix31
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";
+}