Settei modules now should be reusable by others. Started migrating legion (home server) over to the new config. Added initial setup for hercules-ci. Updated all flake inputs.
29 lines
492 B
Nix
29 lines
492 B
Nix
{
|
|
self,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
configurations.nixos.hijiri-vm = {
|
|
modulesPath,
|
|
lib,
|
|
username,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${modulesPath}/profiles/qemu-guest.nix"
|
|
./disks.nix
|
|
];
|
|
|
|
nixpkgs.system = "aarch64-linux";
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.systemd-boot.configurationLimit = 1;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
networking.domain = "hijiri";
|
|
networking.hostName = "vm";
|
|
};
|
|
}
|