Add nixverse command line app.

This commit is contained in:
jay
2025-07-05 08:58:22 -04:00
parent c1b27c2f82
commit 69c9056992
2 changed files with 10 additions and 0 deletions

View File

@@ -51,6 +51,10 @@
system: system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pkgs' = nixverse.loadPkgs' self {
inherit system;
nixpkgs = nixpkgs-stable-nixos;
};
in in
{ {
default = pkgs.mkShellNoCC { default = pkgs.mkShellNoCC {

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = [
pkgs'.nixverse
];
}