feat: add custom icons repo
This commit is contained in:
parent
eac4a802ce
commit
cc57accbfc
3 changed files with 41 additions and 0 deletions
15
home-manager/icons.nix
Normal file
15
home-manager/icons.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue