NixOS and Home Manager config

refactor(kitty): use new wrappers kitty module

nel.pet 7270bb9e af9d3bcd

verified
+4 -10
+4 -10
modules/home/kitty/default.nix
··· 1 - { pkgs, inputs, ... }: { 2 - home.packages = [ 3 - (inputs.wrappers.lib.wrapPackage { 4 - inherit pkgs; 5 - package = pkgs.kitty; 6 - flags = { 7 - "--config" = ./kitty.conf; 8 - }; 9 - }) 10 - ]; 1 + { wrappers, ... }: { 2 + home.packages = [ (wrappers.kitty { 3 + "kitty.conf".path = ./kitty.conf; 4 + }) ]; 11 5 }