feat(nixify): add home package and update lock entries
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
2026-03-02 01:43:05 +05:30
parent 82f69166c5
commit e0e7f514ec
5 changed files with 215 additions and 68 deletions

9
home/programs/nixify.nix Normal file
View File

@@ -0,0 +1,9 @@
{
pkgs,
inputs,
...
}: {
home.packages = [
inputs.nixify.packages.${pkgs.system}.default
];
}