aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2023-01-22 05:28:25 +0000
committerAkshay <[email protected]>2023-01-22 05:28:25 +0000
commitf53589c12df8b272d140409f4da0346428d37dde (patch)
treed47ecde8773e11cf6dd3bd99a604e1c69fc7b637
parent4a6725d5c01c804c96205d99663606dec4d0327e (diff)
use iwctl instead of wpa supplicant
-rw-r--r--hosts/myrtle/configuration.nix15
-rw-r--r--services/default.nix2
-rw-r--r--services/picom.nix2
3 files changed, 14 insertions, 5 deletions
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix
index 3bd8c56..f0a34e2 100644
--- a/hosts/myrtle/configuration.nix
+++ b/hosts/myrtle/configuration.nix
@@ -12,8 +12,19 @@
12 12
13 networking = { 13 networking = {
14 hostName = "myrtle"; 14 hostName = "myrtle";
15 wireless.enable = true; 15 # wireless.enable = true;
16 wireless.networks.Srividhya.psk = "gopalan2020"; 16 # wireless.networks.Srividhya.psk = "gopalan2020";
17 wireless = {
18 iwd.enable = true;
19 interfaces = [ "wl01" ];
20 environmentFile = "/home/np/.wireless.env";
21 networks = {
22 Sanic.psk = "@PSK_SANI@";
23 Gopalan.psk = "@PSK_GOPA@";
24 Srividhya.psk = "@PSK_SRIV@";
25 sage.psk = "@PSK_SAGE@";
26 };
27 };
17 }; 28 };
18 29
19 30
diff --git a/services/default.nix b/services/default.nix
index dda2992..83955bf 100644
--- a/services/default.nix
+++ b/services/default.nix
@@ -8,7 +8,7 @@
8 8
9 imports = [ 9 imports = [
10 ./dunst.nix 10 ./dunst.nix
11 # ./picom.nix 11 ./picom.nix
12 ./redshift.nix 12 ./redshift.nix
13 ./sxhkd.nix 13 ./sxhkd.nix
14 ./mbsync.nix 14 ./mbsync.nix
diff --git a/services/picom.nix b/services/picom.nix
index 08ba376..5def96a 100644
--- a/services/picom.nix
+++ b/services/picom.nix
@@ -11,7 +11,5 @@
11 fadeDelta = 10; 11 fadeDelta = 10;
12 fadeSteps = [ "0.04" "0.04" ]; 12 fadeSteps = [ "0.04" "0.04" ];
13 shadow = false; 13 shadow = false;
14 shadowOffsets = [ (-60) (-60) ];
15 shadowOpacity = "0.20";
16 }; 14 };
17} 15}