mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
feat(program): replace blackbox with kitty
This commit is contained in:
+1
-1
@@ -24,7 +24,7 @@
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
BROWSER = "firefox";
|
||||
TERMINAL = "blackbox";
|
||||
TERMINAL = "kitty";
|
||||
};
|
||||
packages = [
|
||||
pkgs.dconf
|
||||
|
||||
+8
-6
@@ -1,17 +1,19 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, currentSystemDe, ... }:
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = false;
|
||||
enable = currentSystemDe != "none";
|
||||
themeFile = "Catppuccin-Mocha";
|
||||
extraConfig = " ";
|
||||
enableGitIntegration = true;
|
||||
settings = {
|
||||
enable_audio_bell = false;
|
||||
linux_display_server = "x11"; # This is how you get borders in gnome!
|
||||
hide_window_decorations = true;
|
||||
# linux_display_server = "x11"; # This is how you get borders in gnome!
|
||||
};
|
||||
font = {
|
||||
package = pkgs.nerd-fonts.jetbrains-mono;
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
size = 16;
|
||||
size = 12;
|
||||
};
|
||||
themeFile = "Catppuccin-Mocha";
|
||||
extraConfig = " ";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user