(T)im's N(ix) Flake, Multi-Host Configurations for all of my machines! 74k1.sh/
nixos nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(vicinae): use new toml theme

74k1 5e2acb68 00a1ac08

+37 -27
+37 -27
modules/home-manager/services/vicinae/default.nix
··· 11 11 inputs.vicinae.homeManagerModules.default 12 12 ]; 13 13 14 + xdg.dataFile."vicinae/themes/yueye-dark.toml".text = /* toml */ '' 15 + [meta] 16 + version = "0.2.4" 17 + name = "YuèYè" 18 + description = "YueYe is a high contrast, dark base16 theme. It consists of 16 colors (duh) and multiple themes/ports that I (and hopefully soon, others) created." 19 + variant = "dark" 20 + # icon = "yueye.png" 21 + 22 + [colors.core] 23 + background = "#07060B" # base 24 + foreground = "#BFBDCA" # text 25 + secondary_background = "#1C1B28" # surface 26 + border = "#323246" # overlay (subtle border) 27 + accent = "#7089FF" 28 + 29 + [colors.accents] 30 + blue = "#7089FF" 31 + green = "#54FF80" 32 + magenta = "#E366D9" 33 + orange = "#FF9A5B" 34 + purple = "#AB72FF" 35 + red = "#FF4B72" 36 + yellow = "#FFE15A" 37 + cyan = "#5BEBEB" 38 + 39 + [colors.list.item.selection] 40 + background = "#1C1B28" # overlay 41 + secondary_background = "#1C1B28" # highlight_med 42 + 43 + [colors.list.item.hover] 44 + background = "#1C1B28" # highlight_low with reduced opacity 45 + ''; 46 + 14 47 services.vicinae = { 15 48 enable = true; 16 49 autoStart = true; 17 - # themes = { 18 - # yueye-dark = { 19 - # version = "0.2.4"; 20 - # appearance = "dark"; 21 - # # icon = /path/to/icon.png; 22 - # name = "YueYe default dark"; 23 - # description = "YueYe is a high contrast, dark base16 theme."; 24 - # palette = { 25 - # background = "#1C1B28"; 26 - # # secondary_background = "#07060B"; 27 - # # border = "#4C4B69"; 28 - # foreground = "#BFBDCA"; 29 - # # accent = "#7089FF"; 30 - # blue = "#7089FF"; 31 - # green = "#54FF80"; 32 - # magenta = "#E366D9"; 33 - # orange = "#FF9A5B"; 34 - # purple = "#AB72FF"; 35 - # red = "#FF4B72"; 36 - # yellow = "#FFE15A"; 37 - # cyan = "#5BEBEB"; 38 - # }; 39 - # }; 40 - # }; 50 + package = inputs.vicinae.packages.${pkgs.system}.default; 41 51 settings = { 42 52 closeOnFocusLoss = true; 43 53 faviconService = "twenty"; 44 54 font = { 45 - normal = "PP Supply Mono"; 55 + normal = "PP Supply Mono Medium"; 46 56 size = 11; 47 57 }; 48 58 keybinding = "default"; ··· 51 61 # theme.name = "yueye-dark"; 52 62 theme = { 53 63 iconTheme = "Colloid-Dark"; 54 - name = "rose-pine"; 64 + name = "yueye-dark"; 55 65 }; 56 66 window = { 57 67 csd = true; 58 - opacity = 0.95; 68 + opacity = 1.0; 59 69 rounding = 0.0; 60 70 }; 61 71 };