Added vm host option

This commit is contained in:
Nickiel12 2022-11-12 14:19:50 -08:00
parent be7d8d7603
commit 996d3e934c
4 changed files with 44 additions and 15 deletions

View file

@ -38,4 +38,35 @@ in {
}
];
};
NicksNixVMBox = lib.nixosSystem {
inherit system;
specialArgs = { inherit user; };
modules = [
./virtualbox
./configuration.nix
../modules/plasma_desktop.nix
../modules/kmonad.nix
{
networking.hostName = "NicksNixVMBox";
}
kmonad.nixosModules.default
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit user; };
users.${user} = {
imports = [
./home.nix
../modules/git.nix
../modules/urxvt.nix
../modules/vim.nix
../modules/zsh.nix
];
};
};
}
];
}
}

View file

View file

@ -0,0 +1,11 @@
{ ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
boot.loader.grub = {
device = "/dev/sda";
enable = true;
};
}

View file

@ -8,9 +8,9 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
@ -18,19 +18,6 @@
fsType = "ext4";
};
fileSystems."/home" =
{ device = "/dev/disk/by-label/HOME";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-label/SWAP"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's