test helium

This commit is contained in:
2026-03-09 11:45:56 +00:00
parent 8bd2cb2112
commit b55c7a382d
5 changed files with 37 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
{ inputs, ... }: {
flake.nixosModules.overlay = { pkgs, ... }: {
nixpkgs.overlays = [
(final: prev: {
helium = pkgs.callPackage ../pkgs/helium.nix { };
})
];
};
}