summaryrefslogtreecommitdiff
path: root/modules/global.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-02-01 18:40:39 +0530
committerGitHub <noreply@github.com>2024-02-01 18:40:39 +0530
commit88cc3e7e0765b5dd11b06db442ad46536342bba5 (patch)
treed3b1c7b0d54ef3c2274d64967a3bcd2818c03c8e /modules/global.nix
parent01bb0877c285383fd2857920048bd2576f4d31e9 (diff)
Updates (#1)
* . * . * . * . * . * . * . * . * . * . * update * . * temp * . * . * . * . * . * . * . * . * . * . * . * . * temp * . * . * . * update
Diffstat (limited to 'modules/global.nix')
-rw-r--r--modules/global.nix14
1 files changed, 12 insertions, 2 deletions
diff --git a/modules/global.nix b/modules/global.nix
index 61575c1..d727f75 100644
--- a/modules/global.nix
+++ b/modules/global.nix
@@ -1,12 +1,22 @@
+{ pkgs, ... }:
+
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
- nixpkgs.config.allowUnfree = true;
-
time.timeZone = "Asia/Kolkata";
+ networking.networkmanager.enable = true;
+
+ security.rtkit.enable = true;
+
+ /* environment.etc."inputrc".text = pkgs.lib.mkForce (
+ builtins.readFile <nixpkgs/nixos/modules/programs/bash/inputrc> + ''
+ set completion-ignore-case on
+ ''
+ ); */
+
system.stateVersion = "23.11";
}