Compare commits
No commits in common. "4e7e0d2aafa8a24626bbbe33013bf798e98817e5" and "0d8c7075e2921e14e45dfb0e6a91277caafb7d29" have entirely different histories.
4e7e0d2aaf
...
0d8c7075e2
2 changed files with 85 additions and 90 deletions
|
|
@ -207,20 +207,10 @@
|
||||||
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
||||||
"browser.newtabpage.activity-stream.showWeather" = false;
|
"browser.newtabpage.activity-stream.showWeather" = false;
|
||||||
"browser.download.autoHideButton" = false;
|
"browser.download.autoHideButton" = false;
|
||||||
# "browser.startup.homepage" = "http://localhost:5364/";
|
"browser.startup.homepage" = "http://localhost:5364/";
|
||||||
"browser.tabs.splitview.hasUsed" = true;
|
|
||||||
|
|
||||||
# Disable Firefox's machine learning (AI) features
|
# Disable Firefox's machine learning (AI) features
|
||||||
"browser.ml.enable" = false;
|
"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
|
# For browser toolbox/live editing user CSS
|
||||||
"devtools.chrome.enabled" = true;
|
"devtools.chrome.enabled" = true;
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,11 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
let
|
||||||
home.file.".config/kitty/themes" = {
|
# Map Catppuccin colors to Kitty theme structure
|
||||||
source = pkgs.writeTextFile {
|
kitty-colors = with config.scheme.withHashtag; ''
|
||||||
name = "kitty-colors";
|
|
||||||
text = with config.scheme.withHashtag; ''
|
|
||||||
# vim:ft=kitty
|
# vim:ft=kitty
|
||||||
## name: NixOS Kitty Theme
|
## name: Kova's Nixified Kitty
|
||||||
## author: Catppuccin Org & sckova
|
## author: Catppuccin Org & sckova
|
||||||
## license: MIT
|
## license: MIT
|
||||||
## upstream: https://github.com/catppuccin/kitty
|
## upstream: https://github.com/catppuccin/kitty
|
||||||
|
|
@ -19,14 +17,14 @@
|
||||||
foreground ${base05}
|
foreground ${base05}
|
||||||
background ${base00}
|
background ${base00}
|
||||||
selection_foreground ${base00}
|
selection_foreground ${base00}
|
||||||
selection_background ${base05}
|
selection_background ${base06}
|
||||||
|
|
||||||
# Cursor colors
|
# Cursor colors
|
||||||
cursor ${base05}
|
cursor ${base06}
|
||||||
cursor_text_color ${base00}
|
cursor_text_color ${base00}
|
||||||
|
|
||||||
# URL underline color when hovering with mouse
|
# URL underline color when hovering with mouse
|
||||||
url_color ${base05}
|
url_color ${base06}
|
||||||
|
|
||||||
# Kitty window border colors
|
# Kitty window border colors
|
||||||
active_border_color ${config.scheme.withHashtag.${config.colors.accent}}
|
active_border_color ${config.scheme.withHashtag.${config.colors.accent}}
|
||||||
|
|
@ -81,9 +79,16 @@
|
||||||
color7 ${base04}
|
color7 ${base04}
|
||||||
color15 ${base04}
|
color15 ${base04}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
kitty-colors-file = pkgs.writeTextFile {
|
||||||
|
name = "kitty-colors";
|
||||||
|
text = kitty-colors;
|
||||||
destination = "/kitty-colors.conf";
|
destination = "/kitty-colors.conf";
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home.file.".config/kitty/themes" = {
|
||||||
|
source = kitty-colors-file;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue