chore: Update system flake inputs

This commit is contained in:
ulic-youthlic 2026-01-30 22:20:02 +08:00
parent 24d4042df7
commit 8c6a423684
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
5 changed files with 139 additions and 90 deletions

View file

@ -16,6 +16,9 @@ in
./vim.nix
./prismlauncher.nix
./fix-ffmpeg_7-full.nix
./fix-kdePackages.kdenlive.nix
# Nur
./nur.nix
]

View file

@ -0,0 +1,14 @@
{inputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
pkgs = import inputs.nixpkgs-485356 {
localSystem = {
inherit system;
};
config = {
allowUnfree = true;
cudaSupport = true;
};
};
in {
ffmpeg_7-full = pkgs.ffmpeg_7-full;
}

View file

@ -0,0 +1,9 @@
{...}: final: prev: {
kdePackages =
prev.kdePackages
// {
kdenlive = prev.kdePackages.kdenlive.override {
ffmpeg-full = final.ffmpeg_7-full;
};
};
}