This commit is contained in:
Dennis Schoepf 2026-03-03 23:37:11 +00:00
parent 07893685e2
commit f87246b5ce

View file

@ -1,18 +1,18 @@
{ inputs, ... }:
{
flake.modules.nixos.browser =
{ pkgs, system, ... }:
{ pkgs, ... }:
{
environment.systemPackages = [
inputs.helium.packages.${system}.default
inputs.helium.packages.${pkgs.system}.default
];
};
flake.modules.darwin.browser =
{ pkgs, system, ... }:
{ pkgs, ... }:
{
environment.systemPackages = [
inputs.helium.packages.${system}.default
inputs.helium.packages.${pkgs.system}.default
];
};
}