diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-09 21:53:19 +0530 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-09 21:53:19 +0530 |
| commit | 118254ebccbf7414872998cf956f9b586f734386 (patch) | |
| tree | 9ed18b5c1ec079a80686b0864468d9f4a77c4db6 /modules/core/global.nix | |
| parent | db0493863f4d89a074eea0b4e230ff00cea67611 (diff) | |
update
Diffstat (limited to 'modules/core/global.nix')
| -rw-r--r-- | modules/core/global.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/core/global.nix b/modules/core/global.nix new file mode 100644 index 0000000..fffe8ab --- /dev/null +++ b/modules/core/global.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + auto-optimise-store = true; + }; + + time.timeZone = "Asia/Kolkata"; + + networking.networkmanager.enable = true; + + security.rtkit.enable = true; + + system.stateVersion = "23.11"; +} |
