diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-08 20:45:39 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-08 20:45:39 +0100 |
commit | e2155abdb95c9ca333681f708e3eb433078a098c (patch) | |
tree | 443cbca10feb1a2862da247835528150d00f97b9 | |
parent | 732e435f55bbf30756eebd28426ff14b6eba5d45 (diff) | |
download | nixos-e2155abdb95c9ca333681f708e3eb433078a098c.tar nixos-e2155abdb95c9ca333681f708e3eb433078a098c.tar.gz nixos-e2155abdb95c9ca333681f708e3eb433078a098c.tar.bz2 nixos-e2155abdb95c9ca333681f708e3eb433078a098c.tar.xz nixos-e2155abdb95c9ca333681f708e3eb433078a098c.zip |
...
-rw-r--r-- | accounts/gkleen@vidhar.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/accounts/gkleen@vidhar.nix b/accounts/gkleen@vidhar.nix index dd19e41b..316224c4 100644 --- a/accounts/gkleen@vidhar.nix +++ b/accounts/gkleen@vidhar.nix | |||
@@ -4,11 +4,11 @@ | |||
4 | ]; | 4 | ]; |
5 | 5 | ||
6 | config = { | 6 | config = { |
7 | users.users.${userName}.uid = 1000; | 7 | users.users.${userName} = { |
8 | home-manager.users.${userName} = { | 8 | uid = 1000; |
9 | home.file.".ssh/authorized_keys".text = '' | 9 | openssh.authorizedKeys.keys = [ |
10 | command="${pkgs.unison}/bin/unison -server",no-port-forwarding,no-X11-forwarding,no-pty,no-agent-forwarding,no-user-rc ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA4izEz5pEjJqFLeJewHCoqtskqA+olKZNEP1yZWK7Ui gkleen@sif | 10 | "command="${pkgs.unison}/bin/unison -server",no-port-forwarding,no-X11-forwarding,no-pty,no-agent-forwarding,no-user-rc ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA4izEz5pEjJqFLeJewHCoqtskqA+olKZNEP1yZWK7Ui gkleen@sif" |
11 | ''; | 11 | ]; |
12 | }; | 12 | }; |
13 | }; | 13 | }; |
14 | } | 14 | } |