diff options
-rw-r--r-- | host/hephaestus.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix index 18bc004..1557d61 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -35,7 +35,18 @@ videoDrivers = [ "nvidia" ]; }; - hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11_beta; + hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11; + + hardware.bluetooth.enable = true; + services.blueman.enable = true; + + services.minidlna = { + enable = true; + mediaDirs = ["V,/mnt/share/"]; + }; + + virtualisation.lxd.enable = true; + users.users.common.extraGroups = [ "lxd" ]; networking.wireguard.interfaces = { wg0 = { |