Inital commit

This commit is contained in:
OCbwoy3
2024-11-09 20:55:43 +02:00
commit ff816aebc9
14 changed files with 448 additions and 0 deletions

10
modules/nixos/nixpkgs.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
}