update kitty.nix

This commit is contained in:
Ingolf Wagner 2024-06-15 17:15:52 +02:00
parent 767c9926f5
commit 7f971c3b45
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 8 additions and 4 deletions

View file

@ -877,11 +877,11 @@
}, },
"private_assets": { "private_assets": {
"locked": { "locked": {
"lastModified": 1718025088, "lastModified": 1718464398,
"narHash": "sha256-7UF/Cgu/cNaY98GecwJuimoCtc2i6NiQwG8kCTLoNfo=", "narHash": "sha256-iw5jhVDRo6m1Q+2Looxtt2ttLtgazbrkcrN3aTtYib4=",
"ref": "main", "ref": "main",
"rev": "f6e48c9b4946ba289bc84058049b371389dbdc8f", "rev": "d62f54771b324d74e15404c2565b25541ec9a4ff",
"revCount": 25, "revCount": 26,
"type": "git", "type": "git",
"url": "ssh://forgejo@git.ingolf-wagner.de/palo/nixos-private-assets.git" "url": "ssh://forgejo@git.ingolf-wagner.de/palo/nixos-private-assets.git"
}, },

View file

@ -1,3 +1,5 @@
{ lib, pkgs, config, ... }:
with lib;
{ {
options.gui.kitty.enable = mkOption { options.gui.kitty.enable = mkOption {
@ -28,5 +30,7 @@
"ctrl+minus" = "change_font_size all -1.0"; "ctrl+minus" = "change_font_size all -1.0";
}; };
}; };
}; };
} }