remove kitty
This commit is contained in:
parent
dbbc580adb
commit
f3be94e063
9 changed files with 0 additions and 270 deletions
|
@ -19,7 +19,6 @@
|
|||
services.openssh.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
kitty.terminfo
|
||||
];
|
||||
networking.firewall.allowedTCPPorts = [22];
|
||||
networking.firewall.allowedUDPPortRanges = [
|
||||
|
|
|
@ -16,11 +16,6 @@ desktop: {pkgs, ...}: {
|
|||
initExtraBeforeCompInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
initExtra = ''
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
test -n "$KITTY_INSTALLATION_DIR" || export KITTY_INSTALLATION_DIR=${pkgs.kitty}/lib/kitty
|
||||
export KITTY_SHELL_INTEGRATION=enabled
|
||||
autoload -Uz -- "$KITTY_INSTALLATION_DIR"/shell-integration/zsh/kitty-integration
|
||||
kitty-integration
|
||||
unfunction kitty-integration
|
||||
'';
|
||||
plugins = [
|
||||
];
|
||||
|
@ -38,9 +33,6 @@ desktop: {pkgs, ...}: {
|
|||
nvim = "hx";
|
||||
cat = "bat";
|
||||
less = "bat";
|
||||
icat = "${pkgs.kitty}/bin/kitty +kitten icat";
|
||||
d = "${pkgs.kitty}/bin/kitty +kitten diff";
|
||||
hg = "${pkgs.kitty}/bin/kitty +kitten hyperlinked_grep";
|
||||
};
|
||||
packages = with pkgs; [
|
||||
yubikey-manager
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
../programs/vscode
|
||||
../programs/misc.nix
|
||||
../programs/mail.nix
|
||||
../programs/kitty.nix
|
||||
../programs/zk.nix
|
||||
]
|
||||
else []
|
||||
|
|
|
@ -10,16 +10,6 @@
|
|||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
merge.conflictstyle = "diff3";
|
||||
diff = {
|
||||
tool = "kitty";
|
||||
guitool = "kitty.gui";
|
||||
};
|
||||
difftool = {
|
||||
prompt = false;
|
||||
trustExitCode = true;
|
||||
kitty.cmd = "${pkgs.kitty}/bin/kitty +kitten diff $LOCAL $REMOTE";
|
||||
"kitty.gui".cmd = "${pkgs.kitty}/bin/kitty ${pkgs.kitty}/bin/kitty +kitten diff $LOCAL $REMOTE";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
_: {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font.name = "FiraCode Nerd Font Mono";
|
||||
settings = {
|
||||
disable_ligatures = "cursor";
|
||||
shell_integration = "disabled";
|
||||
};
|
||||
extraConfig = ''
|
||||
symbol_map U+F1900-U+F19FF Fairfax HD
|
||||
narrow_symbols U+F1900-U+F19FF 2
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -138,7 +138,6 @@ in {
|
|||
inherit (config.wayland.windowManager.sway.config) modifier;
|
||||
in
|
||||
lib.mkOptionDefault {
|
||||
"${modifier}+Return" = "exec ${pkgs.kitty}/bin/kitty";
|
||||
"${modifier}+d" = "exec ${pkgs.wofi}/bin/wofi --show drun";
|
||||
"Print" = "mode screenshot";
|
||||
"XF86AudioRaiseVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ +5%";
|
||||
|
|
|
@ -26,29 +26,6 @@ in {
|
|||
qt.style.package = pkgs.libsForQt5.breeze-qt5;
|
||||
qt.style.name = "BreezeDark";
|
||||
|
||||
programs.kitty.settings = with theme; {
|
||||
background = cssColor bg;
|
||||
foreground = cssColor fg;
|
||||
cursor = cssColor fg;
|
||||
selection_background = "#4f414c";
|
||||
color0 = cssColor black;
|
||||
color1 = cssColor dark-red;
|
||||
color2 = cssColor dark-green;
|
||||
color3 = cssColor dark-yellow;
|
||||
color4 = cssColor dark-blue;
|
||||
color5 = cssColor dark-magenta;
|
||||
color6 = cssColor dark-cyan;
|
||||
color7 = cssColor light-grey;
|
||||
color8 = cssColor dark-grey;
|
||||
color9 = cssColor red;
|
||||
color10 = cssColor green;
|
||||
color11 = cssColor yellow;
|
||||
color12 = cssColor blue;
|
||||
color13 = cssColor magenta;
|
||||
color14 = cssColor cyan;
|
||||
color15 = cssColor white;
|
||||
};
|
||||
|
||||
programs.waybar.style = with theme; ''
|
||||
* {
|
||||
border: none;
|
||||
|
|
|
@ -37,14 +37,6 @@ in {
|
|||
};
|
||||
});
|
||||
inherit (noto-variable) noto-fonts-cjk;
|
||||
kitty = prev.kitty.overrideAttrs (old: {
|
||||
patches =
|
||||
old.patches
|
||||
++ [
|
||||
../../extra/kitty.patch
|
||||
];
|
||||
installCheckPhase = "true";
|
||||
});
|
||||
nix = nix-packages.packages.${system}.nix-s3-dedup.overrideAttrs (old: rec {
|
||||
postPatchPhase = ''
|
||||
sed 's/getBoolAttr."allowSubstitutes", true./true/' src/libstore/parsed-derivations.cc
|
||||
|
@ -76,10 +68,6 @@ in {
|
|||
maintainers = with maintainers; [ma27];
|
||||
};
|
||||
};
|
||||
dovecot = prev.dovecot.overrideAttrs (old: rec {
|
||||
checkPhase = "true";
|
||||
installCheckPhase = "true";
|
||||
});
|
||||
element-web = prev.callPackage ../../packages/element-web.nix {};
|
||||
}
|
||||
// nix-packages.packages.${system})
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue