blob: d727f753b16161ad8d7354db901c8c901e559d02 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | { 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 (
    builtins.readFile <nixpkgs/nixos/modules/programs/bash/inputrc> + ''
      set completion-ignore-case on
    ''
  ); */
  system.stateVersion = "23.11";
}
 |