blob: 3987e8abe20d8bbaa94524a1ab63c166a8f11d2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ flake, ... }: {
imports = with flake.nixosModules.systemProfiles; [
default-locale
];
config = {
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 # ssh
];
};
systemd.services."sshd".wantedBy = ["multi-user.target"];
services.qemuGuest.enable = true;
};
}
|