Fediversity/infra/common/nixos/default.nix

13 lines
318 B
Nix

{
imports = [
./base.nix
./networking.nix
];
## This is just nice to have, but it is also particularly important for the
## Forgejo CI runners because the Nix configuration in the actions is directly
## taken from here.
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}