mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
13 lines
249 B
Nix
13 lines
249 B
Nix
|
{
|
||
|
pkgs,
|
||
|
self,
|
||
|
...
|
||
|
}: {
|
||
|
age.secrets = {
|
||
|
tailscaleAuthKey.file = ../../secrets/tailscale/authKeyFile.age;
|
||
|
wifi.file = ../../secrets/wifi.age;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = [self.inputs.agenix.packages.${pkgs.system}.default];
|
||
|
}
|