29 lines
550 B
Nix
29 lines
550 B
Nix
{
|
|
configurations.nixos.kazuki = {
|
|
config,
|
|
modulesPath,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${modulesPath}/profiles/qemu-guest.nix"
|
|
./disks.nix
|
|
|
|
./conduit.nix
|
|
./mail.nix
|
|
./vault.nix
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "aarch64-linux";
|
|
# Not intended for interactive use
|
|
settei.user.enable = false;
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.systemd-boot.configurationLimit = 1;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
common.hercules.enable = true;
|
|
};
|
|
}
|