You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The flake in question is from a private repo, but here's a copy:
{inputs={nixpkgs.url="github:nixos/nixpkgs/nixpkgs-unstable";flake-parts.url="github:hercules-ci/flake-parts";};outputs=inputs:
inputs.flake-parts.lib.mkFlake{inheritinputs;}{systems=["x86_64-linux"];# iconv doesn't work on macOSperSystem={pkgs,lib, ... }: {formatter=pkgs.nixpkgs-fmt;apps.default.program=lib.getExe(pkgs.writeShellApplication{//snipfields});devShells.default=pkgs.mkShell{packages=[pkgs.httrackpkgs.wget];};};};}
Notice the systems = [ "x86_64-linux" ] - which means running om show won't show anything. Perhaps it should still show other systems. Maybe spit out an error saying no output for current system, and that the user can run om show . --all-systems to display for all systems? Need to figure out UX.
The text was updated successfully, but these errors were encountered:
The flake in question is from a private repo, but here's a copy:
Notice the
systems = [ "x86_64-linux" ]
- which means runningom show
won't show anything. Perhaps it should still show other systems. Maybe spit out an error saying no output for current system, and that the user can runom show . --all-systems
to display for all systems? Need to figure out UX.The text was updated successfully, but these errors were encountered: