aboutsummaryrefslogtreecommitdiff
path: root/hosts/olive/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/olive/configuration.nix')
-rw-r--r--hosts/olive/configuration.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/hosts/olive/configuration.nix b/hosts/olive/configuration.nix
index 66b5bdc..5ecce25 100644
--- a/hosts/olive/configuration.nix
+++ b/hosts/olive/configuration.nix
@@ -18,12 +18,12 @@
18 interfaces = [ 18 interfaces = [
19 "wlp2s0" 19 "wlp2s0"
20 ]; 20 ];
21 environmentFile = "/run/secrets/wireless.env"; 21 environmentFile = "/home/np/.wireless.env";
22 networks = { 22 networks = {
23 Sanic.pskRaw = "@PSK_SANI@"; 23 Sanic.psk = "@PSK_SANI@";
24 Gopalan.pskRaw = "@PSK_GOPA@"; 24 Gopalan.psk = "@PSK_GOPA@";
25 Srividhya.pskRaw = "@PSK_SRIV@"; 25 Srividhya.psk = "@PSK_SRIV@";
26 sage.pskRaw = "@PSK_SAGE@"; 26 sage.psk = "@PSK_SAGE@";
27 }; 27 };
28 extraConfig = '' 28 extraConfig = ''
29 ctrl_interface=/run/wpa_supplicant 29 ctrl_interface=/run/wpa_supplicant
@@ -103,7 +103,6 @@
103 services.xserver = { 103 services.xserver = {
104 enable = true; 104 enable = true;
105 layout = "us"; 105 layout = "us";
106 xkbOptions = "caps:swapescape";
107 displayManager.startx.enable = true; 106 displayManager.startx.enable = true;
108 libinput.enable = true; 107 libinput.enable = true;
109 }; 108 };
@@ -114,6 +113,8 @@
114 suspendCapacity = 10; 113 suspendCapacity = 10;
115 }; 114 };
116 115
116 services.udev.extraRules = builtins.readFile ./qmk.rules;
117
117 users.users.np = { 118 users.users.np = {
118 isNormalUser = true; 119 isNormalUser = true;
119 home = "/home/np"; 120 home = "/home/np";