mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-21 14:54:49 +01:00
add ci devshell
This commit is contained in:
parent
33327a5708
commit
ebffb583a3
|
@ -20,7 +20,11 @@
|
||||||
perSystem =
|
perSystem =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
devShells.default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
|
devShells = {
|
||||||
|
default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
|
||||||
|
ci = pkgs.mkShellNoCC { packages = [ pkgs.cachix ]; };
|
||||||
|
};
|
||||||
|
|
||||||
packages = {
|
packages = {
|
||||||
iso = self.nixosConfigurations.iso.config.system.build.isoImage;
|
iso = self.nixosConfigurations.iso.config.system.build.isoImage;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue