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

View File

@@ -8,6 +8,7 @@
imports = [
inputs.zen-browser.homeModules.beta
];
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
programs.zen-browser = {
enable = true;
profiles.default = {

View File

@@ -84,5 +84,6 @@
./zoxide.nix
./yq.nix
./codex.nix
./nixify.nix
];
}

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

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