add ci devshell

This commit is contained in:
Adam Stephens 2024-05-14 16:13:54 -04:00
parent 33327a5708
commit ebffb583a3
No known key found for this signature in database

View file

@ -20,7 +20,11 @@
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
devShells = {
default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
ci = pkgs.mkShellNoCC { packages = [ pkgs.cachix ]; };
};
packages = {
iso = self.nixosConfigurations.iso.config.system.build.isoImage;
};