summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorvin <vin@vineetk.net>2025-01-08 21:02:14 -0500
committervin <vin@vineetk.net>2025-01-08 21:59:34 -0500
commitb6a0d11d3231fec0fd8a4b3f6645eab99032857c (patch)
tree9a307ad5c1d0fffb633dab30ca6e8d2e56b11c3c /home.nix
parent4cd4315d4bc8f55ce5a18957521a434ebfd4cf60 (diff)
start including theme colors in separate file. changed alacritty to use that
I'm LEARNDING Nix!
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix36
1 files changed, 8 insertions, 28 deletions
diff --git a/home.nix b/home.nix
index ed7746f..294d456 100644
--- a/home.nix
+++ b/home.nix
@@ -1,6 +1,8 @@
1{ config, lib, pkgs, inputs, ... }: 1{ config, lib, pkgs, inputs, ... }:
2 2
3{ 3let
4 colors = import ./colors.nix;
5in {
4 home = { 6 home = {
5 username = "vin"; 7 username = "vin";
6 homeDirectory = "/home/vin"; 8 homeDirectory = "/home/vin";
@@ -264,37 +266,15 @@
264 }; 266 };
265 267
266 colors = { 268 colors = {
267 primary = { 269 primary = colors.everblush.primary;
268 background = "#141b1e";
269 foreground = "#dadada";
270 };
271 270
272 cursor = { 271 cursor = {
273 text = "#141b1e"; 272 text = colors.everblush.primary.background;
274 cursor = "#dadada"; 273 cursor = colors.everblush.primary.foreground;
275 };
276
277 normal = {
278 black = "#232a2d";
279 red = "#e57474";
280 green = "#8ccf7e";
281 yellow = "#e5c76b";
282 blue = "#67b0e8";
283 magenta = "#c47fd5";
284 cyan = "#6cbfbf";
285 white = "#b3b9b8";
286 }; 274 };
287 275
288 bright = { 276 normal = colors.everblush.normal;
289 black = "#2d3437"; 277 bright = colors.everblush.bright;
290 red = "#ef7e7e";
291 green = "#96d988";
292 yellow = "#f4d67a";
293 blue = "#71baf2";
294 magenta = "#ce89df";
295 cyan = "#67cbe7";
296 white = "#bdc3c2";
297 };
298 }; 278 };
299 }; 279 };
300 }; 280 };