diff options
author | Adrian Kummerlaender | 2022-01-26 14:30:42 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2022-01-26 14:30:42 +0100 |
commit | 7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951 (patch) | |
tree | 8d984cb29e69d7298698fbc04128a84bcc1743d4 | |
parent | cdc1de7cc8675ced4800826d4b5906b9f5c3a211 (diff) | |
download | nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar.gz nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar.bz2 nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar.lz nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar.xz nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.tar.zst nixos_system-7b7c43c6eae85f37dea93e8f1f0bf5d1487ae951.zip |
Update hephaestus config
-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 = { |