nixos-config/hosts/vm/default.nix
2024-11-14 17:30:30 +04:00

26 lines
473 B
Nix

{ config, pkgs, ... }:
{
imports =
[
../../modules/system.nix
../../modules/i3.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader.grub = {
enable = true;
device = "/dev/vda";
useOSProber = true;
};
networking.hostName = "nixos"; # Define your hostname.
networking.networkmanager.enable = true;
system.stateVersion = "24.05"; # Did you read the comment?
}