about summary refs log tree commit diff
path: root/modules/work-gp.nix
blob: 580cafe53193c2660ae849cbd1454ceba591dabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, ... }:
{
	environment.systemPackages = with pkgs; [
		vesktop
		discord
	];
	home-manager.users.pn.xdg.configFile = {
		"discord/settings.json" = {
			text = ''{
				"SKIP_HOST_UPDATE": true
			}'';
			enable = true;
		};
	};

	virtualisation.libvirtd.enable = true;
	programs.virt-manager.enable = true;

	users.users.pn.extraGroups = [ "libvirtd" ];
}