mirror of
https://github.com/divnix/digga.git
synced 2024-11-27 17:36:06 +03:00
19 lines
334 B
Nix
19 lines
334 B
Nix
{ inputs }: with inputs;
|
|
{
|
|
modules = [
|
|
home.nixosModules.home-manager
|
|
ci-agent.nixosModules.agent-profile
|
|
];
|
|
|
|
overlays = [
|
|
nur.overlay
|
|
devshell.overlay
|
|
];
|
|
|
|
# passed to all nixos modules
|
|
specialArgs = {
|
|
unstableModulesPath = "${master}/nixos/modules";
|
|
hardware = nixos-hardware.nixosModules;
|
|
};
|
|
}
|