mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 22:30:32 +01:00
21 lines
321 B
Nix
21 lines
321 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
sops.secrets = {
|
|
"private_keys/xqtc" = {
|
|
path = "/home/xqtc/.ssh/id_ed25519";
|
|
# owner = "xqtc";
|
|
mode = "600";
|
|
};
|
|
"public_keys/xqtc" = {
|
|
path = "/home/xqtc/.ssh/id_ed25519.pub";
|
|
# owner = "xqtc";
|
|
mode = "640";
|
|
};
|
|
};
|
|
}
|