nixosModules: Preserve file name
import drops it
This commit is contained in:
parent
fa0a01f868
commit
a4fedcbc44
10
flake.nix
10
flake.nix
|
@ -13,13 +13,13 @@
|
|||
|
||||
nixosModules = {
|
||||
## Fediversity modules
|
||||
fediversity = import ./fediversity;
|
||||
fediversity = ./fediversity;
|
||||
|
||||
## VM-specific modules
|
||||
interactive-vm = import ./vm/interactive-vm.nix;
|
||||
mastodon-vm = import ./vm/mastodon-vm.nix;
|
||||
peertube-vm = import ./vm/peertube-vm.nix;
|
||||
pixelfed-vm = import ./vm/pixelfed-vm.nix;
|
||||
interactive-vm = ./vm/interactive-vm.nix;
|
||||
mastodon-vm = ./vm/mastodon-vm.nix;
|
||||
peertube-vm = ./vm/peertube-vm.nix;
|
||||
pixelfed-vm = ./vm/pixelfed-vm.nix;
|
||||
};
|
||||
|
||||
nixosConfigurations = {
|
||||
|
|
Reference in a new issue