flakes/hosts/apricot/default.nix

29 lines
535 B
Nix
Raw Normal View History

2021-08-21 18:20:17 +07:00
{ config, modules, overlays, pkgs, ... }: {
networking.hostName = "apricot";
system.stateVersion = "21.05";
2021-09-20 15:09:44 +07:00
time.timeZone = "Asia/Phnom_Penh";
2021-08-21 18:20:17 +07:00
2021-09-20 15:09:44 +07:00
age.secrets = {
passwd.file = ../../secrets/passwd.age;
2021-09-20 14:57:05 +00:00
wg_apricot.file = ../../secrets/wg_apricot.age;
2021-09-20 15:09:44 +07:00
wpa_conf.file = ../../secrets/wpa_conf.age;
};
2021-08-21 18:20:17 +07:00
imports = with modules.system; [
base
input
kernel
nix
packages
security
snapper
2021-09-20 14:45:07 +00:00
wireguard
2021-08-21 18:20:17 +07:00
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin.nix
];
}