mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
fix(home): firefox, themes, waybar, ...
This commit is contained in:
parent
5411cb3963
commit
f9c9ce19b8
5 changed files with 6 additions and 42 deletions
|
|
@ -126,49 +126,13 @@ in
|
|||
extraPolicies = {
|
||||
DisableAppUpdate = true;
|
||||
};
|
||||
extraNativeMessagingHosts = with pkgs; [
|
||||
tridactyl-native
|
||||
] ++ lib.optional config.programs.buku.enable bukubrow;
|
||||
};
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
sponsorblock
|
||||
link-cleaner
|
||||
a11ycss
|
||||
canvasblocker
|
||||
view-image
|
||||
wappalyzer
|
||||
auto-tab-discard
|
||||
bitwarden
|
||||
darkreader
|
||||
decentraleyes
|
||||
foxyproxy-standard
|
||||
clearurls
|
||||
df-youtube
|
||||
tridactyl
|
||||
old-reddit-redirect
|
||||
privacy-badger
|
||||
reddit-enhancement-suite
|
||||
refined-github
|
||||
stylus
|
||||
temporary-containers
|
||||
browserpass
|
||||
tree-style-tab
|
||||
multi-account-containers
|
||||
ublock-origin
|
||||
violentmonkey
|
||||
];
|
||||
profiles = {
|
||||
main = {
|
||||
id = 0;
|
||||
isDefault = true;
|
||||
settings = commonSettings;
|
||||
userChrome = (kw.sassTemplate { name = "userChrome"; src = ./userChrome.sass; }).text;
|
||||
containers.identities = [
|
||||
{ id = 7; name = "Professional"; icon = "briefcase"; color = "red"; }
|
||||
{ id = 8; name = "Shopping"; icon = "cart"; color = "pink"; }
|
||||
{ id = 9; name = "Sensitive"; icon = "gift"; color = "orange"; }
|
||||
{ id = 10; name = "Private"; icon = "fence"; color = "blue"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
gtk = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
name = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
enable = true;
|
||||
font.name = config.kw.theme.font.termName;
|
||||
settings = {
|
||||
font_size = toString config.kw.theme.font.size;
|
||||
font_size = "10.0";
|
||||
bold_font = "auto";
|
||||
italic_font = "auto";
|
||||
bold_italic_font = "auto";
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
border: none
|
||||
border-radius: 0
|
||||
background: none
|
||||
font-family: $font, "Font Awesome 5 Free Solid", "Font Awesome 5 Brands"
|
||||
font-family: $font
|
||||
font-size: $font_size
|
||||
min-height: 12px
|
||||
text-shadow: none
|
||||
|
|
|
|||
|
|
@ -38,15 +38,15 @@ let cfg = config.kw.theme; in
|
|||
font = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = "Iosevka SS10";
|
||||
default = "Iosevka Nerd Font";
|
||||
};
|
||||
termName = mkOption {
|
||||
type = types.str;
|
||||
default = "Iosevka Term SS10";
|
||||
default = "Iosevka Nerd Font";
|
||||
};
|
||||
size = mkOption {
|
||||
type = types.float;
|
||||
default = 9.0;
|
||||
default = 10.0;
|
||||
};
|
||||
size_css = mkOption {
|
||||
type = types.str;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue