10 lines
173 B
Nix
10 lines
173 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
../../system/packages.nix
|
|
../../services/forgejo
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
}
|