add helium

This commit is contained in:
jackjohn7 2026-04-29 00:24:38 -05:00
parent 3d090d65e6
commit 92b6ce1644
4 changed files with 91 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ self, inputs, ... }:
{
flake.nixosModules.helium =
{ pkgs, lib, ... }:
{
config = {
environment.systemPackages = [
inputs.helium.packages.${pkgs.stdenv.hostPlatform.system}.default
];
};
};
}