From 2deaa3040670306188b6f32666f7e55fa25c4c1b Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sun, 13 Nov 2022 16:34:44 +0100 Subject: [PATCH] vlc --- home/christoph/default.nix | 2 +- overlays/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/home/christoph/default.nix b/home/christoph/default.nix index b8ee51b5..3870e41f 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -276,7 +276,7 @@ in rec { blender godot obs-studio - # vlc + vlc # Addition to mpv without any shaders etc kdenlive krita inkscape diff --git a/overlays/default.nix b/overlays/default.nix index 43fb552e..770b3d64 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -5,7 +5,7 @@ let # By specifying this we can just add our derivation to derivations/default.nix and it will land here additions = final: prev: import ../derivations { inherit inputs; pkgs = final; }; - modifications = final: prev: { + modifications = final: prev: rec { # dconf-editor-wrapped = import ./dconf-editor.nix { inherit final prev; }; # Only kept as an example, has nothing to do with current dconf-editor-wrapped derivation # Use dconf-editor.nix: { final, prev }: final..overrideAttrs (oldAttrs: { ... }) or sth similar }; @@ -15,4 +15,4 @@ in # Basically we need some sort of list of all overlays that can be imported from the flake # in the overlays = [ ... ] section of the pkgs = import nixpkgs { ... } configuration # Somehow this library function turns additions/modifications into that - nixpkgs.lib.composeManyExtensions [ additions modifications ] \ No newline at end of file + nixpkgs.lib.composeManyExtensions [ additions modifications ]