home packages and others

This commit is contained in:
alyx 2026-02-21 11:38:18 +00:00
parent 5406cf3a7b
commit d3c4b789f7
No known key found for this signature in database
6 changed files with 177 additions and 68 deletions

10
pkgs/default.nix Normal file
View file

@ -0,0 +1,10 @@
# /etc/nixos/pkgs/default.nix
{pkgs, ...}: let
callPackage = pkgs.callPackage;
in {
nixpkgs.overlays = [(final: prev: {
mypackages = {
cyberhack = callPackage ./cyberhack.nix {};
};
})];
}