diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/networking/networks.nix | bin | 223 -> 222 bytes | |||
-rw-r--r-- | sys/nix/default.nix | 17 |
2 files changed, 11 insertions, 6 deletions
diff --git a/sys/networking/networks.nix b/sys/networking/networks.nix index 6314516..5613da3 100644 --- a/sys/networking/networks.nix +++ b/sys/networking/networks.nix Binary files differdiff --git a/sys/nix/default.nix b/sys/nix/default.nix index f84a809..9014f5f 100644 --- a/sys/nix/default.nix +++ b/sys/nix/default.nix @@ -1,4 +1,9 @@ -{self, config, nixpkgs, ...}: { +{ + self, + config, + nixpkgs, + ... +}: { nix = { registry = { nixpkgs.flake = nixpkgs; @@ -32,16 +37,16 @@ ]; }; }; - home-manager.users.root.home = { + 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 + Host server1.vhack.eu + IdentitiesOnly yes + IdentityFIle ${config.age.secrets.nixremote.path} + User nixremote ''; }; }; |