`qemu-vm.nix` is already imported in `vm-config.nix` but under a different path. This causes an "already declared" error on NixOS 23.11.
7 lines
136 B
Nix
7 lines
136 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
./configuration.nix
|
|
<nix-bitcoin/modules/deployment/krops.nix>
|
|
<qemu-vm/vm-config.nix>
|
|
];
|
|
}
|