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