Add Zoidberg
Some checks failed
Check Flake / check-flake (push) Failing after 2m43s

This commit is contained in:
2023-08-10 19:40:01 -06:00
parent 1922bbbcfd
commit da7ebe7baa
3 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ config, pkgs, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
# services.spotifyd.enable = true;
# services.mount-samba.enable = true;
boot.loader.timeout = 15;
de.enable = true;
services.xserver.desktopManager.kodi.enable = true;
# virt-manager
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
environment.systemPackages = with pkgs; [ virt-manager ];
users.users.googlebot.extraGroups = [ "libvirtd" ];
}