summaryrefslogtreecommitdiffstats
path: root/sys/nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/nix')
-rw-r--r--sys/nix/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --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
'';
};
};