fully migrates dnsc-machine

This commit is contained in:
Dennis Schoepf 2026-03-03 23:26:16 +01:00
parent 8363764798
commit 7d7f81d9ce
14 changed files with 390 additions and 1 deletions

View file

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