feat: add custom icons repo

This commit is contained in:
Thiago Sposito 2025-09-28 22:08:53 -03:00
parent eac4a802ce
commit cc57accbfc
3 changed files with 41 additions and 0 deletions

15
home-manager/icons.nix Normal file
View file

@ -0,0 +1,15 @@
{ icons, pkgs, ... }:
{
home.packages = [ icons.packages.${pkgs.system}.default ];
xdg.desktopEntries.kitty = {
name = "Kitty";
exec = "kitty";
icon = "kitty";
terminal = false;
categories = [
"System"
"TerminalEmulator"
];
};
}