mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 10:05:06 +03:00
12 lines
299 B
Nix
12 lines
299 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
services.sshd.enable = true;
|
|
services.nginx.enable = true;
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
|
|
users.users.root.password = "nixos";
|
|
services.openssh.permitRootLogin = lib.mkDefault "yes";
|
|
services.getty.autologinUser = lib.mkDefault "root";
|
|
}
|