Update dependencies

This commit is contained in:
Charlotte Van Petegem 2021-11-20 21:48:27 +01:00
parent cd66395270
commit b06fd3cceb
No known key found for this signature in database
GPG key ID: 019E764B7184435A
4 changed files with 13 additions and 13 deletions

18
flake.lock generated
View file

@ -28,11 +28,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1634404028, "lastModified": 1637439787,
"narHash": "sha256-JyP2Y6JCCYvUcVz7CXX5pXUfTGTU4GX51Yza82BgMfk=", "narHash": "sha256-+ov6MEVmyVdJBjRZxqPdhURLUkIgallbS5eqDVHh+gs=",
"owner": "ryantm", "owner": "ryantm",
"repo": "agenix", "repo": "agenix",
"rev": "53aa91b4170da35a96fab1577c9a34bc0da44e27", "rev": "4fefd7cfffd548c04510c69c3f3e8e2be032412f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -43,11 +43,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1637399921, "lastModified": 1637426421,
"narHash": "sha256-gABxNlp7Xz4xF+0jilExk5IedYeOe3rx/WOj2ZpdTg0=", "narHash": "sha256-LlRwbps05ck31yf00rZqlW4SPXCVGpfXcoUXm+VmuLQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "f6da7e363211fb0247785651489e5825ee8f29c6", "rev": "ac2998922b6b4b15a517f5bbbfc2a6098d2aa334",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -78,11 +78,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1637398025, "lastModified": 1637398047,
"narHash": "sha256-hDnoEJuEimTU2FlsDH7P0PoOjyCVN+7ZpP++4BjC6kY=", "narHash": "sha256-H6yh2VvABMhrkjYrPccc0Buak4L9jtFzsb98FsNDM2Q=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a19f40d39dfedb9158c29566169f49c6b80a8865", "rev": "c82bc787b8990c89f2f7d57df652ce2424129b92",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -10,7 +10,7 @@
{ bits = 4096; path = "${config.chvp.dataPrefix}/etc/ssh/ssh_host_rsa_key"; type = "rsa"; } { bits = 4096; path = "${config.chvp.dataPrefix}/etc/ssh/ssh_host_rsa_key"; type = "rsa"; }
{ path = "${config.chvp.dataPrefix}/etc/ssh/ssh_host_ed25519_key"; type = "ed25519"; } { path = "${config.chvp.dataPrefix}/etc/ssh/ssh_host_ed25519_key"; type = "ed25519"; }
]; ];
authorizedKeysFiles = [ "/run/secrets/authorized_keys/%u" ]; authorizedKeysFiles = [ "/run/agenix/authorized_keys/%u" ];
}; };
age.secrets."authorized_keys/root".file = ../../../secrets/authorized_keys/root.age; age.secrets."authorized_keys/root".file = ../../../secrets/authorized_keys/root.age;

View file

@ -41,7 +41,7 @@
isReadOnly = false; isReadOnly = false;
}; };
"/run/secrets" = { "/run/secrets" = {
hostPath = "/run/secrets/data-access"; hostPath = "/run/agenix/data-access";
isReadOnly = true; isReadOnly = true;
}; };
}; };

View file

@ -15,13 +15,13 @@
"/mnt/ugent/files" = { "/mnt/ugent/files" = {
device = "//files.ugent.be/ecvpeteg"; device = "//files.ugent.be/ecvpeteg";
fsType = "cifs"; fsType = "cifs";
options = [ "credentials=/run/secrets/passwords/ugent-mount-credentials,${automount_opts},users,vers=3.0,noperm,domain=UGENT,sec=ntlmv2i" ]; options = [ "credentials=${config.age.secrets."passwords/ugent-mount-credentials".path},${automount_opts},users,vers=3.0,noperm,domain=UGENT,sec=ntlmv2i" ];
noCheck = true; noCheck = true;
}; };
"/mnt/ugent/webhost" = { "/mnt/ugent/webhost" = {
device = "//webhost.ugent.be/ecvpeteg"; device = "//webhost.ugent.be/ecvpeteg";
fsType = "cifs"; fsType = "cifs";
options = [ "credentials=/run/secrets/passwords/ugent-mount-credentials,${automount_opts},users,vers=3.0" ]; options = [ "credentials=${config.age.secrets."passwords/ugent-mount-credentials".path},${automount_opts},users,vers=3.0" ];
noCheck = true; noCheck = true;
}; };
}; };