This commit is contained in:
KoenDR06 2025-09-30 23:37:02 +02:00
parent fb781d6e8a
commit 7830d0c300
8 changed files with 39 additions and 11 deletions

View file

@ -22,29 +22,36 @@ in {
wifi.file = secretFile "wifi.age";
personalSSHpub = {
file = secretFile "id_personal.pub.age";
file = secretFile "ssh/id_personal.pub.age";
owner = username;
group = "users";
path = "/home/horseman/.ssh/id_personal.pub";
};
personalSSH = {
file = secretFile "id_personal.age";
file = secretFile "ssh/id_personal.age";
owner = username;
group = "users";
path = "/home/horseman/.ssh/id_personal";
};
githubSSHpub = {
file = secretFile "id_github.pub.age";
file = secretFile "ssh/id_github.pub.age";
owner = username;
group = "users";
path = "/home/horseman/.ssh/id_github.pub";
};
githubSSH = {
file = secretFile "id_github.age";
file = secretFile "ssh/id_github.age";
owner = username;
group = "users";
path = "/home/horseman/.ssh/id_github";
};
sshConfig = {
file = secretFile "ssh/config.age";
owner = username;
group = "users";
path = "/home/horseman/.ssh/config";
};
};
};
}