All checks were successful
/ check (push) Successful in 1m22s
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
11 lines
190 B
Nix
11 lines
190 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
flake.modules.nixos.base =
|
|
{ system, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
inputs.git-repo-updater.packages.${system}.default
|
|
];
|
|
};
|
|
}
|