flakes/hosts/sugarcane/default.nix

29 lines
608 B
Nix
Raw Normal View History

2022-02-02 16:05:17 +07:00
{ config, inputs, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "sugarcane";
system.stateVersion = "21.11";
time.timeZone = "Asia/Singapore";
age.secrets = {
passwd.file = ../../secrets/passwd.age;
2022-02-02 18:08:26 +07:00
wg_sugarcane.file = ../../secrets/wg_sugarcane.age;
2022-02-02 16:05:17 +07:00
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
2022-12-02 21:31:37 +07:00
inputs.home-manager-raccoon.nixosModule
2022-02-02 16:05:17 +07:00
base
home-manager
input
2022-11-27 14:30:59 +07:00
nix-stable
2022-02-02 16:05:17 +07:00
security
2022-02-02 18:04:28 +07:00
wireguard
2022-02-02 16:05:17 +07:00
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
../../users/hana
];
}