mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
Aly Raffauf
a844e2ff68
* hosts: mv common.nix -> common/default.nix * hosts/common: move wifi settings to wifi.nix * hosts/common: add locale.nix, nix.nix, samba.nix, and secrets.nix * hosts/common: move network and wifi settings to network.nix * hosts/common: org fixes
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];
|
|
}
|