Add custom packages dir

This commit is contained in:
Leonardo Eugênio 2023-01-18 21:29:37 -03:00
parent a22397496b
commit 40361be84d
2 changed files with 6 additions and 0 deletions

View File

@ -112,5 +112,6 @@
}];
};
};
packages.${system}.linuxPackages = import ./pkgs { inherit pkgs; };
};
}

5
pkgs/default.nix Normal file
View File

@ -0,0 +1,5 @@
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs }: {
}