diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-23 18:38:26 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-23 18:38:26 +0100 |
commit | f92b8b3c229582f3f7095a68df554f9a535ca702 (patch) | |
tree | 1cf5519f73abae8ad627b49856ca010c82d3068c /flake.nix | |
parent | feat(pkgs/back): Init (diff) | |
download | nixos-server-f92b8b3c229582f3f7095a68df554f9a535ca702.tar.gz nixos-server-f92b8b3c229582f3f7095a68df554f9a535ca702.zip |
feat(pkgs): Hook up to the flake and add needed infrastructure
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index ff3014f..dc63ea9 100644 --- a/flake.nix +++ b/flake.nix @@ -104,6 +104,7 @@ ]; tests = import ./tests {inherit pkgs specialArgs nixLib;}; + vhackPackages = import ./pkgs {inherit pkgs nixLib;}; inherit (library) nixLib; in { @@ -120,6 +121,8 @@ checks."${system}" = tests; + packages."${system}" = vhackPackages; + devShells."${system}" = { default = pkgs.mkShell { packages = with pkgs; [ |