Zuckerberg 35972b6d68
Some checks failed
Check Flake / check-flake (push) Failing after 18s
Xbox controller support
2023-08-10 20:39:41 -06:00

27 lines
607 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
# services.spotifyd.enable = true;
# wireless xbox controller support
hardware.xpadneo.enable = true;
services.mount-samba.enable = true;
boot.loader.timeout = lib.mkForce 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" ];
}