backwards: Add media filesystem mount

This commit is contained in:
Alexander Heldt
2024-08-31 13:30:54 +02:00
parent 331d4b52a0
commit 5ced04694f

View File

@@ -1,5 +1,11 @@
{ pkgs, ... }:
{
fileSystems."/home/alex/media" = {
device = "/dev/disk/by-uuid/ad4acc0f-172c-40f8-8473-777c957e8764";
fsType = "ext4";
options = [ "nofail" ];
};
# 1. enable vaapi on OS-level
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };