summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.lock22
-rw-r--r--home.nix15
-rw-r--r--hosts/demiurge/default.nix2
-rw-r--r--hosts/hastur/default.nix2
4 files changed, 23 insertions, 18 deletions
diff --git a/flake.lock b/flake.lock
index c8fcbdc..019e9ac 100644
--- a/flake.lock
+++ b/flake.lock
@@ -163,11 +163,11 @@
163 ] 163 ]
164 }, 164 },
165 "locked": { 165 "locked": {
166 "lastModified": 1746719124, 166 "lastModified": 1747184352,
167 "narHash": "sha256-KOL73WIjO00ds1oIe+5HAcGcpd/TfE6dymmmYbiSlYM=", 167 "narHash": "sha256-GBZulv50wztp5cgc405t1uOkxQYhSkMqeKLI+iSrlpk=",
168 "owner": "nix-community", 168 "owner": "nix-community",
169 "repo": "home-manager", 169 "repo": "home-manager",
170 "rev": "3c59c5132b64e885faca381e713b579dcbddba75", 170 "rev": "7c1cefb98369cc85440642fdccc1c1394ca6dd2c",
171 "type": "github" 171 "type": "github"
172 }, 172 },
173 "original": { 173 "original": {
@@ -184,8 +184,8 @@
184 ] 184 ]
185 }, 185 },
186 "locked": { 186 "locked": {
187 "lastModified": 1745988606, 187 "lastModified": 1747191788,
188 "narHash": "sha256-Ap64DXhzFzQi/S+X/V3qaCXnwTCASvH+1FgAVU7am98=", 188 "narHash": "sha256-dekVtt/TcNszrnWjNX71pme1ZYUaOAaACu4+c0lx6Yg=",
189 "path": "/data/src/clones/llm/llama.cpp", 189 "path": "/data/src/clones/llm/llama.cpp",
190 "type": "path" 190 "type": "path"
191 }, 191 },
@@ -211,11 +211,11 @@
211 }, 211 },
212 "nixpkgs": { 212 "nixpkgs": {
213 "locked": { 213 "locked": {
214 "lastModified": 1746683680, 214 "lastModified": 1747114929,
215 "narHash": "sha256-+5zk+UbG0+GQlKt+gIKm+OhlYvHmkAHFXvf7hl1HDeM=", 215 "narHash": "sha256-GnQGiZiOnGfxM9oVhgqOJk0Qv1aZ11p5Aloac2tdoKY=",
216 "owner": "nixos", 216 "owner": "nixos",
217 "repo": "nixpkgs", 217 "repo": "nixpkgs",
218 "rev": "16762245d811fdd74b417cc922223dc8eb741e8b", 218 "rev": "fab95ba4b9523f310644e6e6087c0014535c8e02",
219 "type": "github" 219 "type": "github"
220 }, 220 },
221 "original": { 221 "original": {
@@ -272,11 +272,11 @@
272 }, 272 },
273 "nixpkgs-stable": { 273 "nixpkgs-stable": {
274 "locked": { 274 "locked": {
275 "lastModified": 1746557022, 275 "lastModified": 1746957726,
276 "narHash": "sha256-QkNoyEf6TbaTW5UZYX0OkwIJ/ZMeKSSoOMnSDPQuol0=", 276 "narHash": "sha256-k9ut1LSfHCr0AW82ttEQzXVCqmyWVA5+SHJkS5ID/Jo=",
277 "owner": "nixos", 277 "owner": "nixos",
278 "repo": "nixpkgs", 278 "repo": "nixpkgs",
279 "rev": "1d3aeb5a193b9ff13f63f4d9cc169fb88129f860", 279 "rev": "a39ed32a651fdee6842ec930761e31d1f242cb94",
280 "type": "github" 280 "type": "github"
281 }, 281 },
282 "original": { 282 "original": {
diff --git a/home.nix b/home.nix
index 60c9455..ba872a3 100644
--- a/home.nix
+++ b/home.nix
@@ -711,16 +711,19 @@ in
711 711
712 extraConfig = '' 712 extraConfig = ''
713 # status bar 713 # status bar
714 set-option -g status-style bg=terminal 714 set-option -g status-style bg=terminal
715 set-option -g status-style fg=terminal 715 set-option -g status-style fg=terminal
716 716
717 set-option -g window-status-format "#[bg=terminal fg=terminal noreverse]#{window_index}:#{window_name}" 717 set-option -g window-status-format "#[bg=terminal fg=terminal noreverse]#{window_index}:#{window_name}"
718 set-option -g window-status-current-format "#[bg=black fg=terminal]#{window_index}:#{window_name}#{window_flags}" 718 set-option -g window-status-current-format "#[bg=black fg=terminal]#{window_index}:#{window_name}#{window_flags}"
719 719
720 set-option -g status-right "%R %b %d %Y" 720 set-option -g status-right "%R %b %d %Y"
721 721
722 # colorscheme stuff 722 # colorscheme stuff
723 set-option -sa terminal-features ',*:RGB' 723 set-option -sa terminal-features ',*:RGB'
724
725 # remove annoying escape delay
726 set-option -g escape-time 0
724 ''; 727 '';
725 }; 728 };
726 729
diff --git a/hosts/demiurge/default.nix b/hosts/demiurge/default.nix
index 08cc90e..668e956 100644
--- a/hosts/demiurge/default.nix
+++ b/hosts/demiurge/default.nix
@@ -315,6 +315,8 @@
315 listen-address = "127.0.0.1"; 315 listen-address = "127.0.0.1";
316 bind-interfaces = true; 316 bind-interfaces = true;
317 no-resolv = true; 317 no-resolv = true;
318
319 conf-file = "/data/src/clones/networking/hagezi_dns-blocklists/dnsmasq/ultimate.txt";
318 }; 320 };
319 }; 321 };
320 322
diff --git a/hosts/hastur/default.nix b/hosts/hastur/default.nix
index de578e8..5127533 100644
--- a/hosts/hastur/default.nix
+++ b/hosts/hastur/default.nix
@@ -61,7 +61,7 @@
61 ''; 61 '';
62 }; 62 };
63 63
64 FloridaPoly_BYOD = { }; 64 USF-Guest = { };
65 65
66 iphonebob.pskRaw = "***REDACTED_PSK***"; 66 iphonebob.pskRaw = "***REDACTED_PSK***";
67 Retreat_86WiFi.pskRaw = "***REDACTED_PSK***"; 67 Retreat_86WiFi.pskRaw = "***REDACTED_PSK***";