nix-config/machines/vm-aarch64/default.nix
larstvei 15da1edc1e Define modules
This makes things a bit more robust against moving around files.
2026-02-22 00:04:35 +01:00

21 lines
365 B
Nix

{ self, ... }:
{
imports = [
./hardware
self.nixosModules.base
self.nixosModules.nixos
];
home-manager.users.larstvei.imports = [
self.homeModules.minimal
];
networking.hostName = "larstvei-vm";
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "25.11";
}