diff options
Diffstat (limited to 'home-config')
| -rw-r--r-- | home-config/nix-home-manager/home.nix | 1 | ||||
| -rw-r--r-- | home-config/nix-home-manager/zenProfile.nix | 70 |
2 files changed, 71 insertions, 0 deletions
diff --git a/home-config/nix-home-manager/home.nix b/home-config/nix-home-manager/home.nix index 6ac9a1d..70f7f1c 100644 --- a/home-config/nix-home-manager/home.nix +++ b/home-config/nix-home-manager/home.nix | |||
| @@ -61,6 +61,7 @@ | |||
| 61 | programs.zen-browser = { | 61 | programs.zen-browser = { |
| 62 | enable = true; | 62 | enable = true; |
| 63 | policies = import ./zenPolicies.nix; | 63 | policies = import ./zenPolicies.nix; |
| 64 | profiles.default = import ./zenProfile.nix; | ||
| 64 | }; | 65 | }; |
| 65 | 66 | ||
| 66 | # The home.packages option allows you to install Nix packages into your | 67 | # The home.packages option allows you to install Nix packages into your |
diff --git a/home-config/nix-home-manager/zenProfile.nix b/home-config/nix-home-manager/zenProfile.nix new file mode 100644 index 0000000..e10cda6 --- /dev/null +++ b/home-config/nix-home-manager/zenProfile.nix | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | rec { | ||
| 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 | } | ||
