flakes/hosts/sugarcane/default.nix
2022-02-02 16:05:17 +07:00

26 lines
533 B
Nix

{ config, inputs, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "sugarcane";
system.stateVersion = "21.11";
time.timeZone = "Asia/Singapore";
age.secrets = {
passwd.file = ../../secrets/passwd.age;
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
inputs.home-manager-porcupine.nixosModule
base
home-manager
input
nix
security
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
../../users/hana
];
}