add ssh for server, add vscodium for pc, refactor hostnames
This commit is contained in:
parent
b06525436b
commit
f174b610d8
7 changed files with 55 additions and 8 deletions
27
modules/networking/ssh.nix
Normal file
27
modules/networking/ssh.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ config, options, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib.modules) mkIf;
|
||||
in
|
||||
{
|
||||
options.modules.networking.ssh = let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in {
|
||||
enable = mkEnableOption "enable ssh";
|
||||
};
|
||||
|
||||
config = mkIf config.modules.networking.ssh.enable {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
ports = [ 22 ];
|
||||
settings = {
|
||||
PassswordAuthentication = true;
|
||||
AllowUsers = [ "chris", "root" ];
|
||||
UseDns = true;
|
||||
UsePAM = true;
|
||||
PermitRootLogin = "prohibit-password";
|
||||
PermitEmptyPasswords = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue