aboutsummaryrefslogtreecommitdiff
path: root/home-config/nix-home-manager/zenProfile.nix
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2026-08-24 01:09:26 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2026-08-24 01:09:26 -0400
commit0f472179ea1aaab0ab68a109c34fd78b25642422 (patch)
tree584f45f02788ce85023d7a6b9c1dbae4c5e869a1 /home-config/nix-home-manager/zenProfile.nix
parenta16f194100e72ea63633618587e1808ed81f864c (diff)
migration to mostly nix
Diffstat (limited to 'home-config/nix-home-manager/zenProfile.nix')
-rw-r--r--home-config/nix-home-manager/zenProfile.nix70
1 files changed, 0 insertions, 70 deletions
diff --git a/home-config/nix-home-manager/zenProfile.nix b/home-config/nix-home-manager/zenProfile.nix
deleted file mode 100644
index e10cda6..0000000
--- a/home-config/nix-home-manager/zenProfile.nix
+++ /dev/null
@@ -1,70 +0,0 @@
1rec {
2 settings = {
3 "zen.welcome-screen.seen" = true;
4 "zen.urlbar.behavior" = "float";
5 "zen.view.compact.enable-at-startup"= true;
6 "zen.view.use-single-toolbar"= false;
7 "zen.view.window.scheme"= 0;
8 };
9
10 pinsForce = true;
11 pins = {
12 "Discord" = {
13 id = "59d28a80-d185-4dec-92cb-6da549cdfd27";
14 workspace = spaces."Personal".id;
15 url = "https://discord.com/channels/@me";
16 position = 101;
17 isEssential = true;
18 };
19 "RSS" = {
20 id = "0fa25825-01f2-49ce-b8a2-80f1100e782c";
21 workspace = spaces."Personal".id;
22 url = "https://rss.ryan77627.xyz";
23 position = 102;
24 isEssential = true;
25 };
26 };
27
28 spacesForce = true;
29 spaces = {
30 "Personal" = {
31 id = "2392f396-2548-4a20-9fb8-a3e940be4a58";
32 #icon = "";
33 position = 1000;
34 theme = {
35 type = "gradient";
36 colors = [
37 {
38 red = 199;
39 green = 161;
40 blue = 247;
41 algorithm = "complementary";
42 type = "explicit-lightness";
43 lightness = 80;
44 #isPrimary = true;
45 }
46 # {
47 # red = 157;
48 # green = 251;
49 # blue = 194;
50 # algorithm = "splitComplimentary";
51 # type = "explicit-lightness";
52 # lightness = 80;
53 # isPrimary = false;
54 # }
55 # {
56 # red = 161;
57 # green = 243;
58 # blue = 247;
59 # algorithm = "splitComplimentary";
60 # type = "explicit-lightness";
61 # lightness = 80;
62 # isPrimary = false;
63 # }
64 ];
65 opacity = 0.419;
66 texture = 0.3125;
67 };
68 };
69 };
70}