nix/nixos/hosts/nixos-vm-01/default.nix

29 lines
773 B
Nix
Raw Normal View History

2023-09-17 12:07:48 +02:00
{ 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";
2023-09-17 12:54:51 +02:00
2023-09-17 12:56:45 +02:00
boot.loader.grub = {
enable = true;
device = "/dev/sda";
useOSProber = true;
};
2023-09-17 13:04:23 +02:00
networking.firewall.allowedTCPPorts = [ 22 ];
2023-09-17 12:07:48 +02:00
}