Secret : Move sshd trusted keys to secret part.
This commit is contained in:
parent
f0bd0ba56b
commit
7b20a0429c
|
@ -159,6 +159,7 @@
|
|||
flake = self;
|
||||
inputs = inputs;
|
||||
key = import ./part/Key.nix {};
|
||||
secret = import ./part/Secret.nix {};
|
||||
setting = import ./part/Setting.nix {};
|
||||
style = import ./part/Style.nix { config = config; };
|
||||
util = import ./part/Util.nix { pkgs = pkgs; };
|
||||
|
@ -279,6 +280,7 @@
|
|||
flake = self;
|
||||
inputs = inputs;
|
||||
key = import ./part/Key.nix {};
|
||||
secret = import ./part/Secret.nix {};
|
||||
setting = import ./part/Setting.nix {};
|
||||
style = import ./part/Style.nix { config = import ./part/style/Gruvbox.nix {}; };
|
||||
util = import ./part/Util.nix { pkgs = pkgs; };
|
||||
|
|
|
@ -1,12 +1,5 @@
|
|||
{ ... }: {
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEuuw5ek5wGB9KdBhCTxjV+CBpPU6RIOynHkFYC4dau3 root@dasha"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGIf192IxsksM6u8UY+eqpHopebgV+NNq2G03ssdXIgz root@desktop"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJSWdbkYsRiDlKu8iT/k+JN4KY08iX9qh4VyqxlpEZcE root@home"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFgiYKFkMfiGOZCZIk+O7LtaoF6A3cHEFCqaPwXOM4rR root@work"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDBL5NAm8S97EtfB/7DPf5Xl3Cqi3PlSO1V0m7fknNzz root@laptop"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIL2LI1iFDZC223aWqBVz9yusfB/XrRwsBKiL5warIF/ nix-on-droid@phone"
|
||||
];
|
||||
{ secret, ... }: {
|
||||
users.users.root.openssh.authorizedKeys.keys = secret.ssh.trustedKeys;
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
allowSFTP = true;
|
||||
|
|
10
part/Secret.nix
Normal file
10
part/Secret.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }: {
|
||||
ssh.trustedKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEuuw5ek5wGB9KdBhCTxjV+CBpPU6RIOynHkFYC4dau3 root@dasha"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGIf192IxsksM6u8UY+eqpHopebgV+NNq2G03ssdXIgz root@desktop"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJSWdbkYsRiDlKu8iT/k+JN4KY08iX9qh4VyqxlpEZcE root@home"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFgiYKFkMfiGOZCZIk+O7LtaoF6A3cHEFCqaPwXOM4rR root@work"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDBL5NAm8S97EtfB/7DPf5Xl3Cqi3PlSO1V0m7fknNzz root@laptop"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIL2LI1iFDZC223aWqBVz9yusfB/XrRwsBKiL5warIF/ nix-on-droid@phone"
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue