flakes/hosts/apricot/default.nix
2021-10-06 22:38:07 +07:00

29 lines
552 B
Nix

{ config, modules, overlays, pkgs, ... }: {
networking.hostName = "apricot";
system.stateVersion = "21.05";
time.timeZone = "Asia/Phnom_Penh";
age.secrets = {
passwd.file = ../../secrets/passwd.age;
wg_apricot.file = ../../secrets/wg_apricot.age;
wpa_conf.file = ../../secrets/wpa_conf.age;
};
imports = with modules.system; [
base
input
kernel
nix
packages
security
snapper
transmission
wireguard
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin.nix
];
}