0ec0c25238
* Move extern lists to their own folder * Move unstable package and module imports to their own folder * Create a genPkgs function to avoid using legacyPackages for the whole package set * Move hmActivationPackages to legacyPackages
13 lines
181 B
Nix
13 lines
181 B
Nix
{ inputs }: with inputs;
|
|
{
|
|
modules = [
|
|
home.nixosModules.home-manager
|
|
ci-agent.nixosModules.agent-profile
|
|
];
|
|
|
|
overlays = [
|
|
nur.overlay
|
|
devshell.overlay
|
|
];
|
|
}
|