fix(home): firefox, themes, waybar, ...

This commit is contained in:
Kat Inskip 2022-07-26 12:13:44 -07:00
parent 5411cb3963
commit f9c9ce19b8
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 6 additions and 42 deletions

View file

@ -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"; }
];
};
};
};

View file

@ -2,7 +2,7 @@
{
gtk = {
enable = false;
enable = true;
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;

View file

@ -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";

View file

@ -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

View file

@ -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;