summary refs log tree commit diff stats
path: root/sys
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-11-20 20:21:29 +0100
committersils <sils@sils.li>2023-11-20 20:21:29 +0100
commit27eeb0b0d7b3a7f406e0bdc169aaf9fff60a92d1 (patch)
tree152c5bcd40616b662d698c0e838f4cacb83ffcb3 /sys
parentfeat(secrets): add nixremote ssh-key (diff)
downloadnix-config-27eeb0b0d7b3a7f406e0bdc169aaf9fff60a92d1.tar.gz
nix-config-27eeb0b0d7b3a7f406e0bdc169aaf9fff60a92d1.zip
fix(secrets/wireless.age): update
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
#	modified:   secrets/wireless.age
#
# Changes not staged for commit:
#	modified:   sys/nix/default.nix
#	modified:   users/default.nix
#
# Untracked files:
#	files/root_ssh_config
#	nixremote
#	users/root/
#
Diffstat (limited to 'sys')
-rw-r--r--sys/nix/default.nix15
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/nix/default.nix b/sys/nix/default.nix
index 32a6fc5..14abb66 100644
--- a/sys/nix/default.nix
+++ b/sys/nix/default.nix
@@ -1,4 +1,4 @@
-{nixpkgs, ...}: {
+{config, nixpkgs, ...}: {
   nix = {
     registry = {
       nixpkgs.flake = nixpkgs;
@@ -30,4 +30,17 @@
       ];
     };
   };
+    home-manager.users.root.home = {
+    username = "root";
+    homeDirectory = "/root";
+    stateVersion = "23.05";
+    file.".ssh/config" = {
+      text = ''
+      Host server1.vhack.eu
+	            IdentitiesOnly yes
+	            IdentityFIle ${config.age.secrets.nixremote.path}
+	            User nixremote
+      '';
+    };
+  };
 }