Moved to using a Windows VM with PCI-E passthrough for gaming using screenstub and SCREAM.

Many other changes. Commented some things. Who knows, it's been a long month and a bit.
This commit is contained in:
kat witch 2021-01-06 05:17:32 +00:00 committed by kat
parent e0746cf244
commit 1383d88b11
8 changed files with 174 additions and 24 deletions

View file

@ -1,6 +1,15 @@
{ config, lib, pkgs, ... }:
{
virtualisation.libvirtd = {
enable = true;
qemuOvmf = true;
qemuRunAsRoot = false;
onBoot = "ignore";
onShutdown = "shutdown";
};
users.users.kat.extraGroups = [ "libvirtd" ];
environment.systemPackages = let
python-env = python-packages:
with pkgs.python38Packages; [
@ -14,6 +23,12 @@
home-manager.users.kat = {
programs.go.enable = true;
programs.fish = {
interactiveShellInit = ''
set fish_user_paths $fish_user_paths $HOME/.config/composer/vendor/bin
'';
};
home.packages = [
pkgs.jetbrains.clion
pkgs.jetbrains.idea-ultimate