From 7f971c3b45d6a06eba223d6260d8c50afc786271 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sat, 15 Jun 2024 17:15:52 +0200 Subject: [PATCH] update kitty.nix --- flake.lock | 8 ++++---- homes/palo/gui/kitty.nix | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 6a86d0d..ee80b9b 100644 --- a/flake.lock +++ b/flake.lock @@ -877,11 +877,11 @@ }, "private_assets": { "locked": { - "lastModified": 1718025088, - "narHash": "sha256-7UF/Cgu/cNaY98GecwJuimoCtc2i6NiQwG8kCTLoNfo=", + "lastModified": 1718464398, + "narHash": "sha256-iw5jhVDRo6m1Q+2Looxtt2ttLtgazbrkcrN3aTtYib4=", "ref": "main", - "rev": "f6e48c9b4946ba289bc84058049b371389dbdc8f", - "revCount": 25, + "rev": "d62f54771b324d74e15404c2565b25541ec9a4ff", + "revCount": 26, "type": "git", "url": "ssh://forgejo@git.ingolf-wagner.de/palo/nixos-private-assets.git" }, diff --git a/homes/palo/gui/kitty.nix b/homes/palo/gui/kitty.nix index af16f11..d462a32 100644 --- a/homes/palo/gui/kitty.nix +++ b/homes/palo/gui/kitty.nix @@ -1,3 +1,5 @@ +{ lib, pkgs, config, ... }: +with lib; { options.gui.kitty.enable = mkOption { @@ -28,5 +30,7 @@ "ctrl+minus" = "change_font_size all -1.0"; }; }; + + }; }