mirror of
https://github.com/dolphin-emu/sadm.git
synced 2026-01-31 01:05:23 +01:00
13 lines
165 B
Nix
13 lines
165 B
Nix
# Passed to NixOS modules as "my".
|
|
rec {
|
|
common = import ./common;
|
|
roles = import ./roles;
|
|
|
|
modules = {
|
|
imports = [
|
|
common
|
|
roles
|
|
];
|
|
};
|
|
}
|