Remove x86vm

This commit is contained in:
Nathan McCarty 2023-06-18 16:47:33 -04:00
parent 9e1fb8e4a4
commit 6dd05347dc
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
3 changed files with 0 additions and 33 deletions

View File

@ -169,16 +169,6 @@
];
};
x86vm = makeNixosSystem {
system = "x86_64-linux";
hostName = "x86vm";
extraModules = [
"${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
"${nixpkgs}/nixos/modules/virtualisation/qemu-vm.nix"
./machines/x86vm/configuration.nix
];
};
# WSL sytem
wsl = makeNixosSystem {
system = "x86_64-linux";

View File

@ -1,15 +0,0 @@
{ config, lib, pkgs, ... }:
{
nathan = {
programs = { games = true; };
config = {
isDesktop = true;
nix.autoUpdate = false;
};
};
home-manager.users.nathan = import ./home.nix;
# Workaround to get sway working in qemu
environment.variables = { "WLR_RENDERER" = "pixman"; };
}

View File

@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
nathan = {
programs = { util.git.gpgSign = false; };
config = { isDesktop = true; };
};
}