18 lines
306 B
Nix
18 lines
306 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [ inputs.agenix.nixosModules.default ];
|
|
|
|
config = {
|
|
age = {
|
|
identityPaths = [
|
|
"/etc/ssh/pinwheel"
|
|
"/home/alex/.ssh/alex"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
inputs.agenix.packages."${pkgs.system}".default
|
|
];
|
|
};
|
|
}
|