refactor
This commit is contained in:
parent
fb781d6e8a
commit
7830d0c300
8 changed files with 39 additions and 11 deletions
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue