15 lines
187 B
Nix
15 lines
187 B
Nix
{
|
|
vpnEnable,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
../system/default.nix
|
|
../system/users.nix
|
|
]
|
|
++ lib.optionals (vpnEnable == true) [
|
|
../system/vpn.nix
|
|
];
|
|
}
|