mirror of
https://github.com/thegeneralist01/config.git
synced 2026-03-07 10:59:55 +01:00
11 lines
236 B
Nix
11 lines
236 B
Nix
{ pkgs, config, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
agenix
|
|
];
|
|
|
|
age.identityPaths = if config.onLinux then [
|
|
"/home/thegeneralist/.ssh/id_ed25519"
|
|
] else [
|
|
"/Users/thegeneralist/.ssh/id_ed25519"
|
|
];
|
|
}
|