1
0
Fork 0

Remove SDL and ffmpeg overrides from Lilim.

This commit is contained in:
Kevin Baensch 2023-01-29 14:42:44 +01:00
parent 94589735dc
commit beccf32334
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 1 additions and 7 deletions

View File

@ -1,14 +1,8 @@
{ pkgs, ... }:
let
gitpkgs = import /nixpkgs {};
in {
{
services.cron.enable = false;
networking.dhcpcd.extraConfig = "noarp";
nixpkgs.config.packageOverrides = pkgs: rec{
SDL2 = pkgs.SDL2.override { udevSupport = true; fcitxSupport = true; };
ffmpeg_4 = gitpkgs.ffmpeg-full // { bin = gitpkgs.ffmpeg-full; };
};
system.stateVersion = "19.09";
}