mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
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:
parent
e0746cf244
commit
1383d88b11
8 changed files with 174 additions and 24 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue