24 lines
736 B
Nix
24 lines
736 B
Nix
{ config, lib, pkgs, modulesPath, desktop, username, ... }: {
|
|
imports = [ ];
|
|
nixpkgs.config.allowUnfree = false;
|
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/ROOT";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
virtualisation.virtualbox.guest.enable = true;
|
|
time.timeZone = "Asia/Tokyo";
|
|
networking.hostName = "nixos-vm-01";
|
|
|
|
boot.loader.enable = true;
|
|
boot.loader.grub.device = '/dev/sda';
|
|
boot.loader.grub.useOSProber = true;
|
|
}
|