aboutsummaryrefslogtreecommitdiff
path: root/hosts/olive/configuration.nix
blob: c4e7f179b64be5a2d20ee4a49d624860c5a6cdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{ config, pkgs, lib, self, ... }:

{
  imports =
    [
      ./hardware-configuration.nix
      ../../services/suspend.nix
    ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;
  boot.kernel.sysctl."net.ipv4.ip_forward" = 1;

  networking = {
    hostName = "olive";
    wireless = {
      iwd.enable = true;
      interfaces = [ "wlan0" ];
      environmentFile = "/home/np/.wireless.env";
      networks = {
        Sanic.psk = "@PSK_SANI@";
        Gopalan.psk = "@PSK_GOPA@";
        Srividhya.psk = "@PSK_SRIV@";
        sage.psk = "@PSK_SAGE@";
      };
      extraConfig = ''
        ctrl_interface=/run/wpa_supplicant
        ctrl_interface_group=wheel
      '';
    };
    useDHCP = false;
    interfaces.wlan0.useDHCP = true;
  };

  networking.nameservers = [ "1.1.1.1" "1.0.0.1" ];

  i18n.defaultLocale = "en_US.UTF-8";
  time.timeZone = "Asia/Kolkata";

  nixpkgs.config = {
    "2bwm".patches = [
      ../../patches/2bwm/nerd-patch.diff
    ];

    st = {
      conf = builtins.readFile ../../programs/st/config.h;
      extraLibs = with pkgs; [ harfbuzz ];
      patches = [
        ../../patches/st/xres.diff
        ../../patches/st/bright.diff
        ../../patches/st/ligatures.diff
      ];
    };
  };

  nixpkgs.overlays = with self.overlays; [
    nvim-nightly
    statix
    prompt
  ];

  environment.systemPackages = with pkgs; [
    _2bwm
    man-pages
    man-pages-posix
    (lib.hiPrio pkgs.bashInteractive_5)
  ];

  documentation = {
    dev.enable = true;
    man.generateCaches = true;
  };

  users.motd = with config; ''
    Host       ${networking.hostName}
    OS         NixOS ${system.nixos.release} (${system.nixos.codeName})
    Version    ${system.nixos.version}
    Kernel     ${boot.kernelPackages.kernel.version}
  '';

  programs = {
    light.enable = true;
    adb.enable = true;
  };

  sound.enable = true;

  hardware = {
    pulseaudio = {
      enable = true;
      package = pkgs.pulseaudioFull;
      extraConfig = "load-module module-switch-on-connect";
    };
    bluetooth = {
      enable = true;
      powerOnBoot = true;
    };
  };

  # Enable the X11 windowing system.
  services.xserver = {
    enable = true;
    layout = "us";
    displayManager.startx.enable = true;
    libinput.enable = true;
  };

  services.batteryNotifier = {
    enable = true;
    notifyCapacity = 20;
    suspendCapacity = 10;
  };

  services.udev.extraRules = builtins.readFile ./qmk.rules;

  users.users.np = {
    isNormalUser = true;
    home = "/home/np";
    extraGroups = [ "wheel" "users" "tty" "audio" "video" "input" "adbusers" "docker" ];
  };

  nix = {
    package = pkgs.nixUnstable;
    extraOptions = ''
      experimental-features = nix-command flakes
      warn-dirty = false
      keep-outputs = false
      keep-derivations = false
    '';
    settings = {
      trusted-users = [
        "root"
        "np"
      ];
    };
  };

  # This value determines the NixOS release from which the default
  # settings for stateful data, like file locations and database versions
  # on your system were taken. It‘s perfectly fine and recommended to leave
  # this value at the release version of the first install of this system.
  # Before changing this value read the documentation for this option
  # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
  system.stateVersion = "20.03"; # Did you read the comment?
}