[NixOS] Fix broken systemcheck statements

This commit is contained in:
Ivan Malison 2023-08-19 17:11:20 -06:00
parent 83041be158
commit d93b8da859
2 changed files with 4 additions and 3 deletions

View File

@ -54,9 +54,10 @@
# nix # nix
nixd nixd
nil nil
] ++ (if config.system.platform.system == "x86_64-linux" then with pkgs; [ ] ++ (if pkgs.system == "x86_64-linux" then with pkgs; [
# purescript # purescript
purescript purescript
spago # Broken
# spago
] else []); ] else []);
} }

View File

@ -110,7 +110,7 @@
# Visualization # Visualization
graphviz graphviz
nodePackages.mermaid-cli nodePackages.mermaid-cli
] ++ (if config.system.platform.system == "x86_64-linux" then with pkgs; [ ] ++ (if pkgs.system == "x86_64-linux" then with pkgs; [
etcher etcher
discord discord
google-chrome google-chrome