From beccf32334abb490ef02837d1ec01e0fa92e41e0 Mon Sep 17 00:00:00 2001 From: derped Date: Sun, 29 Jan 2023 14:42:44 +0100 Subject: [PATCH] Remove SDL and ffmpeg overrides from Lilim. --- machines/Lilim/configuration.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/machines/Lilim/configuration.nix b/machines/Lilim/configuration.nix index d12e885..8279fad 100644 --- a/machines/Lilim/configuration.nix +++ b/machines/Lilim/configuration.nix @@ -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"; }