feat: added ironclaw

This commit is contained in:
2026-03-12 13:40:10 +05:30
parent 62072e71ea
commit e89003a063
6 changed files with 35 additions and 6 deletions

View File

@@ -119,6 +119,15 @@
];
definedAliases = ["@lib"];
};
searchix = {
name = "Searchix";
urls = [
{
template = "https://searchix.ovh/?query={searchTerms}";
}
];
definedAliases = ["sx"];
};
};
};
pins = {

View File

@@ -12,6 +12,7 @@
./swaync.nix
./swayosd.nix
./xdg.nix
./ironclaw.nix
# ./anyrun.nix
# ./eww.nix
# ./wallpaperengine.nix

View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = [
pkgs.ironclaw
];
}