Music + GPG agent forwarding + all sorts.

This commit is contained in:
kat witch 2021-03-09 00:45:18 +00:00
parent 2c6230dd63
commit c548add318
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
24 changed files with 525 additions and 56 deletions

View file

@ -2,7 +2,7 @@
{
imports = [
./hardware.nix
./hardware.nix
../../services/zfs.nix
../../services/nginx.nix
./thermal

View file

@ -1,7 +1,7 @@
{ config, pkgs, lib, sources, witch, ... }:
{
# libvirtd is used for our virtual machine
# libvirtd is used for our virtual machine
virtualisation.libvirtd = {
enable = true;
qemuOvmf = true;
@ -11,8 +11,9 @@
};
# required for guest reboots with the 580
boot.extraModulePackages =
[ (pkgs.linuxPackagesFor config.boot.kernelPackages.kernel).vendor-reset ];# required groups for various intentions
boot.extraModulePackages = [
(pkgs.linuxPackagesFor config.boot.kernelPackages.kernel).vendor-reset
]; # required groups for various intentions
users.users.kat.extraGroups = [ "libvirtd" "input" "qemu-libvirtd" ];
# video=efifb:off allows the 580 to be passed through regardless of being the boot display and allows the 560 to act as a console device
@ -82,4 +83,4 @@
Option "TearFree" "true"
BusID "PCI:37:0:0"
'';
}
}