kitty variable name change

This commit is contained in:
2026-07-06 17:00:18 +01:00
parent bdca2fdc0f
commit 32db47b96a

View File

@@ -9,8 +9,8 @@
...
}: {
environment.systemPackages = [
self.packages.${pkgs.stdenv.hostPlatform.system}.kitty
];
self.packages.${pkgs.stdenv.hostPlatform.system}.kitty
];
};
perSystem = {
pkgs,
@@ -19,9 +19,9 @@
...
}: {
packages.kitty = let
myFont = pkgs.nerd-fonts.fira-mono; # or any font-providing package
fira-mono = pkgs.nerd-fonts.fira-mono;
fontsConf = pkgs.makeFontsConf {
fontDirectories = [myFont];
fontDirectories = [fira-mono];
};
in
inputs.wrappers.wrappers.kitty.wrap {