9 lines
152 B
Nix
9 lines
152 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./base
|
|
"${inputs.self}/modules/mizukios/features/remote/ssh.nix"
|
|
];
|
|
|
|
networking.firewall.enable = false;
|
|
}
|