Home

dotnix @main - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
tree log patch
Add newt theme
Signature
-----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQATOazl4dxasI/0eyhbofqKJi0VjFei4ySvx9Oz4mIZndUWWPsJAJ4ydBalGEZO8GE FCK/nynu2nF9I9gF0iZA4= -----END SSH SIGNATURE-----
jolheiser <git@jolheiser.com>
1 week ago
3 changed files, 28 additions(+), 0 deletions(-)
home/nogui/default.nixhome/nogui/newt.nixhome/nogui/nushell.nix
M home/nogui/default.nix -> home/nogui/default.nix
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
diff --git a/home/nogui/default.nix b/home/nogui/default.nix
index 09e1af020abbb9e637e2caf7984b43a015d79dab..1b14ea91afbc1e3277e356ef84da07c03fe75b4d 100644
--- a/home/nogui/default.nix
+++ b/home/nogui/default.nix
@@ -18,6 +18,7 @@     ./gpg.nix
     ./jj.nix
     ./lazygit.nix
     ./lsp.nix
+    ./newt.nix
     ./nushell.nix
     ./oh-my-posh.nix
     ./rust.nix
I home/nogui/newt.nix
 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
diff --git a/home/nogui/newt.nix b/home/nogui/newt.nix
new file mode 100644
index 0000000000000000000000000000000000000000..ea05ffcdee8fc80caf8960d2f7eb528c167599de
--- /dev/null
+++ b/home/nogui/newt.nix
@@ -0,0 +1,26 @@
+{ config, ... }:
+{
+  home.sessionVariables."NEWT_COLORS_FILE" = "${config.xdg.configHome}/newt/colors";
+  xdg.configFile."newt/colors".text = ''
+    root=#cdd6f4,#1e1e2e
+    border=#f5c2e7,#181825
+    window=#181825,#181825
+    shadow=#11111b,#11111b
+    title=#cba6f7,#181825
+    button=#181825,#cba6f7
+    button_active=#181825,#f9e2af
+    actbutton=#f9e2af,#181825
+    compactbutton=#f9e2af,#181825
+    checkbox=#f38ba8,#181825
+    actcheckbox=#181825,#f38ba8
+    entry=#a6e3a1,#181825
+    disentry=#181825,#181825
+    textbox=#a6e3a1,#181825
+    acttextbox=#cba6f7,#181825
+    label=#89b4fa,#181825
+    listbox=#a6e3a1,#181825
+    actlistbox=#cba6f7,#181825
+    sellistbox=#f38ba8,#181825
+    actsellistbox=#181825,#f9e2af
+  '';
+}
M home/nogui/nushell.nix -> home/nogui/nushell.nix
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
diff --git a/home/nogui/nushell.nix b/home/nogui/nushell.nix
index 50cea0aff93c601f564b17e22ff5b2003101227a..51bc022739a4b9951ba36bc202c2302da271cdd2 100644
--- a/home/nogui/nushell.nix
+++ b/home/nogui/nushell.nix
@@ -30,6 +30,7 @@       ${jolheiser.pokego}/bin/pokego --no-title
     '';
     extraEnv = ''
       $env.GOPATH = "${config.xdg.dataHome}/go"
+      $env.NEWT_COLORS_FILE = "${config.xdg.configHome}/newt/colors"
       $env.PATH = ($env.PATH | split row (char esep) | prepend '${config.xdg.dataHome}/go/bin')
       $env.SPECTRE_USERNAME = "jolheiser"
       $env.SPECTRE_SECRET-FILE = "${config.age.secrets.spectre-pw.path}"