nix: update to 24.11

Reviewed-on: https://codeberg.org/leana8959/.files/pulls/1
Co-authored-by: Léana 江 <leana.jiang+git@icloud.com>
Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
This commit is contained in:
Primrose 2024-11-30 18:42:54 +00:00 committed by Léana
parent 57ed96f0ea
commit f6a89cba08
60 changed files with 696 additions and 752 deletions

View file

@ -1,11 +1,11 @@
{ lib, config, ... }:
let
cfg = config.programs.kitty;
in
{
pkgs,
lib,
config,
...
}:
{
programs.kitty = lib.mkIf config.programs.kitty.enable {
programs.kitty = lib.mkIf cfg.enable {
font = {
name = "AltiosevkaNFM";
size = 14;
@ -15,7 +15,6 @@
background = "#ffffff";
confirm_os_window_close = 0;
text_composition_strategy = "1.7 0";
shell = ''${pkgs.fish}/bin/fish --command="tmux-home" --login'';
};
extraConfig = ''
background #f8f8f8
@ -40,6 +39,5 @@
color15 #ffffff
selection_foreground #f8f8f8
'';
shellIntegration.enableFishIntegration = true;
};
}