Remove x86vm
This commit is contained in:
parent
9e1fb8e4a4
commit
6dd05347dc
10
flake.nix
10
flake.nix
|
@ -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 sytem
|
||||||
wsl = makeNixosSystem {
|
wsl = makeNixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
|
@ -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"; };
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
nathan = {
|
|
||||||
programs = { util.git.gpgSign = false; };
|
|
||||||
config = { isDesktop = true; };
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue