Files
nixos/machines/bomba/default.nix
2026-01-08 11:03:15 +01:00

16 lines
278 B
Nix

{ ... }:
{
imports = [
./configuration.nix
./hardware.nix
./virtualisation.nix
];
networking.hostName = "bomba";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "25.05"; # Did you read the comment?
}