mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
11 lines
256 B
Nix
11 lines
256 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ];
|
|
|
|
users.users.root = {
|
|
openssh.authorizedKeys.keys = sshMatrix.groups.privileged_users;
|
|
};
|
|
|
|
}
|