File tree Expand file tree Collapse file tree 7 files changed +28
-19
lines changed Expand file tree Collapse file tree 7 files changed +28
-19
lines changed Original file line number Diff line number Diff line change 9
9
path = config . secrets . id . path ;
10
10
} ] ;
11
11
12
- secrets . thePassword . file = ./password.the.age ;
13
- users . users = {
14
- root . hashedPasswordFile = config . secrets . thePassword . path ;
12
+ secrets . password . file = ./password.age ;
13
+ users . users = {
14
+ root = {
15
+ openssh . authorizedKeys . keys = keys . admins ;
16
+ hashedPasswordFile = config . secrets . password . path ;
17
+ } ;
15
18
16
19
the = {
17
20
description = "The" ;
18
21
openssh . authorizedKeys . keys = keys . admins ;
19
- hashedPasswordFile = config . secrets . thePassword . path ;
22
+ hashedPasswordFile = config . secrets . password . path ;
20
23
isNormalUser = true ;
21
24
extraGroups = [ "wheel" ] ;
22
25
} ;
23
26
24
27
backup = {
25
28
description = "Backup" ;
26
29
openssh . authorizedKeys . keys = keys . all ;
27
- hashedPasswordFile = config . secrets . thePassword . path ;
30
+ hashedPasswordFile = config . secrets . password . path ;
28
31
isNormalUser = true ;
29
32
} ;
30
33
31
34
build = {
32
35
description = "Build" ;
33
36
openssh . authorizedKeys . keys = keys . all ;
34
- hashedPasswordFile = config . secrets . thePassword . path ;
37
+ hashedPasswordFile = config . secrets . password . path ;
35
38
isNormalUser = true ;
36
39
extraGroups = [ "build" ] ;
37
40
} ;
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
path = config . secrets . id . path ;
10
10
} ] ;
11
11
12
- secrets . floppyPassword . file = ./password.floppy.age ;
13
- users . users = {
14
- root . hashedPasswordFile = config . secrets . floppyPassword . path ;
12
+ secrets . password . file = ./password.age ;
13
+ users . users = {
14
+ root = {
15
+ openssh . authorizedKeys . keys = keys . admins ;
16
+ hashedPasswordFile = config . secrets . password . path ;
17
+ } ;
15
18
16
19
floppy = {
17
20
description = "Floppy" ;
18
21
openssh . authorizedKeys . keys = keys . admins ;
19
- hashedPasswordFile = config . secrets . floppyPassword . path ;
22
+ hashedPasswordFile = config . secrets . password . path ;
20
23
isNormalUser = true ;
21
24
extraGroups = [ "wheel" ] ;
22
25
} ;
23
26
24
27
backup = {
25
28
description = "Backup" ;
26
29
openssh . authorizedKeys . keys = keys . all ;
27
- hashedPasswordFile = config . secrets . floppyPassword . path ;
30
+ hashedPasswordFile = config . secrets . password . path ;
28
31
isNormalUser = true ;
29
32
} ;
30
33
} ;
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
path = config . secrets . id . path ;
10
10
} ] ;
11
11
12
- secrets . sevenPassword . file = ./password.seven.age ;
13
- users . users = {
14
- root . hashedPasswordFile = config . secrets . sevenPassword . path ;
12
+ secrets . password . file = ./password.age ;
13
+ users . users = {
14
+ root = {
15
+ openssh . authorizedKeys . keys = keys . admins ;
16
+ hashedPasswordFile = config . secrets . password . path ;
17
+ } ;
15
18
16
19
seven = {
17
20
description = "Hungry Seven" ;
18
21
openssh . authorizedKeys . keys = keys . admins ;
19
- hashedPasswordFile = config . secrets . sevenPassword . path ;
22
+ hashedPasswordFile = config . secrets . password . path ;
20
23
isNormalUser = true ;
21
24
extraGroups = [ "wheel" ] ;
22
25
} ;
23
26
24
27
backup = {
25
28
description = "Backup" ;
26
29
openssh . authorizedKeys . keys = keys . all ;
27
- hashedPasswordFile = config . secrets . sevenPassword . path ;
30
+ hashedPasswordFile = config . secrets . password . path ;
28
31
isNormalUser = true ;
29
32
} ;
30
33
} ;
File renamed without changes.
Original file line number Diff line number Diff line change 3
3
in {
4
4
# best
5
5
"hosts/best/id.age" . publicKeys = [ best ] ++ admins ;
6
- "hosts/best/password.the. age" . publicKeys = [ best ] ++ admins ;
6
+ "hosts/best/password.age" . publicKeys = [ best ] ++ admins ;
7
7
8
8
"hosts/best/cache/key.age" . publicKeys = [ best ] ++ admins ;
9
9
22
22
23
23
# disk
24
24
"hosts/disk/id.age" . publicKeys = [ disk ] ++ admins ;
25
- "hosts/disk/password.floppy. age" . publicKeys = [ disk ] ++ admins ;
25
+ "hosts/disk/password.age" . publicKeys = [ disk ] ++ admins ;
26
26
27
27
# nine
28
28
"hosts/nine/id.age" . publicKeys = [ nine ] ++ admins ;
29
- "hosts/nine/password.seven. age" . publicKeys = [ nine ] ++ admins ;
29
+ "hosts/nine/password.age" . publicKeys = [ nine ] ++ admins ;
30
30
31
31
"hosts/nine/github2forgejo/environment.age" . publicKeys = [ nine ] ++ admins ;
32
32
You can’t perform that action at this time.
0 commit comments