mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Use runCommandLocal for flake checks
This commit is contained in:
parent
baa8f8c4ef
commit
68458ebd83
1 changed files with 2 additions and 2 deletions
|
|
@ -4,12 +4,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
checks = {
|
||||
# statix = pkgs.runCommand "statix" { buildInputs = [ pkgs.statix ]; } ''
|
||||
# statix = pkgs.runCommandLocal "statix" { buildInputs = [ pkgs.statix ]; } ''
|
||||
# statix check ${self}
|
||||
# mkdir $out
|
||||
# '';
|
||||
|
||||
deadnix = pkgs.runCommand "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
|
||||
deadnix = pkgs.runCommandLocal "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
|
||||
deadnix --fail ${self}
|
||||
mkdir $out
|
||||
'';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue