mirror of
https://github.com/divnix/digga.git
synced 2024-11-23 20:22:04 +03:00
27 lines
473 B
Nix
27 lines
473 B
Nix
{ inputs }: with inputs;
|
|
let
|
|
hmModules = { };
|
|
in
|
|
{
|
|
modules = [
|
|
home.nixosModules.home-manager
|
|
ci-agent.nixosModules.agent-profile
|
|
];
|
|
|
|
overlays = [
|
|
nur.overlay
|
|
devshell.overlay
|
|
(final: prev: {
|
|
deploy-rs = deploy.packages.${prev.system}.deploy-rs;
|
|
})
|
|
];
|
|
|
|
# passed to all nixos modules
|
|
specialArgs = {
|
|
inherit hmModules;
|
|
|
|
overrideModulesPath = "${override}/nixos/modules";
|
|
hardware = nixos-hardware.nixosModules;
|
|
};
|
|
}
|