Compare commits

..

No commits in common. "4e7e0d2aafa8a24626bbbe33013bf798e98817e5" and "0d8c7075e2921e14e45dfb0e6a91277caafb7d29" have entirely different histories.

2 changed files with 85 additions and 90 deletions

View file

@ -207,20 +207,10 @@
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
"browser.newtabpage.activity-stream.showWeather" = false;
"browser.download.autoHideButton" = false;
# "browser.startup.homepage" = "http://localhost:5364/";
"browser.tabs.splitview.hasUsed" = true;
"browser.startup.homepage" = "http://localhost:5364/";
# Disable Firefox's machine learning (AI) features
"browser.ml.enable" = false;
"browser.ml.chat.enabled" = false;
"browser.ml.chat.page" = false;
"browser.ai.control.default" = "blocked";
"browser.ai.control.linkPreviewKeyPoints" = "blocked";
"browser.ai.control.pdfjsAltText" = "blocked";
"browser.ai.control.sidebarChatbot" = "blocked";
"browser.ai.control.smartTabGroups" = "blocked";
"browser.ai.control.translations" = "blocked";
"sidebar.notification.badge.aichat" = false;
# For browser toolbox/live editing user CSS
"devtools.chrome.enabled" = true;

View file

@ -3,13 +3,11 @@
pkgs,
...
}:
{
home.file.".config/kitty/themes" = {
source = pkgs.writeTextFile {
name = "kitty-colors";
text = with config.scheme.withHashtag; ''
let
# Map Catppuccin colors to Kitty theme structure
kitty-colors = with config.scheme.withHashtag; ''
# vim:ft=kitty
## name: NixOS Kitty Theme
## name: Kova's Nixified Kitty
## author: Catppuccin Org & sckova
## license: MIT
## upstream: https://github.com/catppuccin/kitty
@ -19,14 +17,14 @@
foreground ${base05}
background ${base00}
selection_foreground ${base00}
selection_background ${base05}
selection_background ${base06}
# Cursor colors
cursor ${base05}
cursor ${base06}
cursor_text_color ${base00}
# URL underline color when hovering with mouse
url_color ${base05}
url_color ${base06}
# Kitty window border colors
active_border_color ${config.scheme.withHashtag.${config.colors.accent}}
@ -81,9 +79,16 @@
color7 ${base04}
color15 ${base04}
'';
kitty-colors-file = pkgs.writeTextFile {
name = "kitty-colors";
text = kitty-colors;
destination = "/kitty-colors.conf";
};
in
{
home.file.".config/kitty/themes" = {
source = kitty-colors-file;
recursive = true;
};