Commit dde7578aae72
Changed files (1)
machine
machine/vm.nix
@@ -0,0 +1,30 @@
+{ config, pkgs, ... }:
+
+{
+ imports =
+ [ # Include the results of the hardware scan.
+ ../hardware-configuration.nix
+ ../configuration/custom-packages.nix
+ ../configuration/common.nix
+ ../profiles/desktop.nix
+ ../profiles/ssh.nix
+ ../profiles/virtualization.nix
+ ../profiles/dockerization.nix
+ ];
+
+ boot = {
+ loader = {
+ grub = {
+ enable = true;
+ device = "/dev/sda";
+ };
+ };
+ initrd = {
+ checkJournalingFS = false;
+ };
+ };
+
+ virtualisation.virtualbox.guest.enable = true;
+
+ service.xserver.xkbVariant = "bepo";
+}