this repo has no description
2
fork

Configure Feed

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

also obsidian

+31 -21
+31 -21
home/profiles/desktop/default.nix
··· 1 - { pkgs, config, lib, ... }: 1 + { 2 + pkgs, 3 + config, 4 + lib, 5 + ... 6 + }: 2 7 let 3 8 dracula-gtk = pkgs.fetchFromGitHub { 4 9 owner = "dracula"; ··· 8 13 }; 9 14 in 10 15 { 16 + imports = [ ../obsidian ]; 17 + 11 18 home.pointerCursor = { 12 19 x11.enable = true; 13 20 x11.defaultCursor = "left_ptr"; ··· 33 40 termpdfpy 34 41 # libsForQt5.kontact 35 42 thunderbird 36 - libsecret # For secret-tool to manage keyring 43 + libsecret # For secret-tool to manage keyring 37 44 blender 38 45 ]; 39 46 ··· 48 55 xdg.enable = true; # This doesn't seem to do anything so we have below 49 56 xdg.configHome = "/home/anish/.config"; # TODO bad hardcode 50 57 xdg.configFile = { 51 - "Kvantum/Dracula/Dracula.kvconfig".source = "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig"; 52 - "Kvantum/Dracula/Dracula.svg".source = "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.svg"; 58 + "Kvantum/Dracula/Dracula.kvconfig".source = 59 + "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig"; 60 + "Kvantum/Dracula/Dracula.svg".source = 61 + "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.svg"; 53 62 "Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula"; 54 63 }; 55 64 xdg.mimeApps.defaultApplications = { ··· 122 131 }; 123 132 }; 124 133 125 - 126 134 qt = { 127 135 enable = true; 128 136 platformTheme.name = "gtk"; 129 - style = { name = "qt5ct-style"; }; 137 + style = { 138 + name = "qt5ct-style"; 139 + }; 130 140 }; 131 141 132 142 # set up env ··· 139 149 # Black 140 150 "*.color0" = "#1F2430"; 141 151 "*.color8" = "#F28779"; 142 - # Red 152 + # Red 143 153 "*.color1" = "#A6CC70"; 144 154 "*.color9" = "#FFCC66"; 145 - # Green 155 + # Green 146 156 "*.color2" = "#5CCFE6"; 147 157 "*.color10" = "#F29E74"; 148 158 # Yellow 149 159 "*.color3" = "#77A8D9"; 150 160 "*.color11" = "#5C6773"; 151 - # Blue 161 + # Blue 152 162 "*.color4" = "#707A8C"; 153 163 "*.color12" = "#F27983"; 154 - # Magenta 164 + # Magenta 155 165 "*.color5" = "#BAE67E"; 156 166 "*.color13" = "#FFD580"; 157 - # Cyan 167 + # Cyan 158 168 "*.color6" = "#73D0FF"; 159 169 "*.color14" = "#FFA759"; 160 - # White 170 + # White 161 171 "*.color7" = "#95E6CB"; 162 172 "*.color15" = "#CBCCC6"; 163 173 # Bold, Italic, Underline ··· 178 188 # shadow = true; 179 189 # shadowOffsets = [ (-10) (-10) ]; 180 190 # shadowOpacity = "0.22"; 181 - # # activeOpacity = "1.00"; 182 - # # inactiveOpacity = "0.92"; 183 - # extraOptions = '' 184 - # shadow-radius = 12; 185 - # # blur-background = true; 186 - # # blur-background-frame = true; 187 - # # blur-background-fixed = true; 188 - # blur-kern = "7x7box"; 189 - # blur-strength = 320; 191 + # # activeOpacity = "1.00"; 192 + # # inactiveOpacity = "0.92"; 193 + # extraOptions = '' 194 + # shadow-radius = 12; 195 + # # blur-background = true; 196 + # # blur-background-frame = true; 197 + # # blur-background-fixed = true; 198 + # blur-kern = "7x7box"; 199 + # blur-strength = 320; 190 200 # corner-radius = 3 191 201 # ''; 192 202 # };