mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-31 19:44:17 +00:00
14 lines
297 B
Nix
14 lines
297 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
sops.secrets = {
|
|
"ssh/ilouser/id_rsa" = {
|
|
sopsFile = ../../secrets/default.yaml;
|
|
path = "/root/.ssh/ilo_id_rsa";
|
|
};
|
|
"ssh/ilouser/id_rsa_pub" = {
|
|
sopsFile = ../../secrets/default.yaml;
|
|
path = "/root/.ssh/ilo_id_rsa.pub";
|
|
};
|
|
};
|
|
}
|