summaryrefslogtreecommitdiff
path: root/modules/global.nix
blob: 88d73f24c60bdb9f4f08a7571051baa153f0e9b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, ... }:

{
  nix.settings = {
    experimental-features = [ "nix-command" "flakes" ];
    auto-optimise-store = true;
  };

  time.timeZone = "Asia/Kolkata";

  networking.networkmanager.enable = true;

  security.rtkit.enable = true;

  /* environment.etc."inputrc".text = pkgs.lib.mkForce ''
    set completion-ignore-case on
  ''; */

  system.stateVersion = "23.11";
}