29 lines
555 B
Nix
29 lines
555 B
Nix
{ inputs }: with inputs;
|
|
{
|
|
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;
|
|
})
|
|
pkgs.overlay
|
|
];
|
|
|
|
# passed to all nixos modules
|
|
specialArgs = {
|
|
overrideModulesPath = "${override}/nixos/modules";
|
|
hardware = nixos-hardware.nixosModules;
|
|
};
|
|
|
|
# added to home-manager
|
|
userModules = [
|
|
];
|
|
|
|
# passed to all home-manager modules
|
|
userSpecialArgs = { };
|
|
}
|