mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
Add vps-remote-access module
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
f0303cc19a
commit
efe09476d8
25
nix/nixos-modules/vps-remote-access.nix
Normal file
25
nix/nixos-modules/vps-remote-access.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.magic_rb.vpsRemoteAccess;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.magic_rb = {
|
||||||
|
vpsRemoteAccess = {
|
||||||
|
enable = mkEnableOption "Enable VPS remote access module.";
|
||||||
|
trustedWheel = mkEnableOption "Add the wheel group to Nix trusted-users.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable
|
||||||
|
{
|
||||||
|
nix.trustedUsers = mkIf cfg.trustedWheel
|
||||||
|
[ "@wheel" ];
|
||||||
|
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
passwordAuthentication = false;
|
||||||
|
permitRootLogin = "no";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue