diff options
| -rw-r--r-- | hosts/c-pc/configuration.nix | 3 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/media/default.nix | 4 | ||||
| -rw-r--r-- | snowfall/modules/home/tools/default.nix | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix index 73fa648..c0dc45b 100644 --- a/hosts/c-pc/configuration.nix +++ b/hosts/c-pc/configuration.nix @@ -30,8 +30,7 @@ firefox wineWowPackages.stable winetricks - - ffmpeg + jellyfin go diff --git a/snowfall/modules/home/suites/media/default.nix b/snowfall/modules/home/suites/media/default.nix index 5caf02b..b47fe01 100644 --- a/snowfall/modules/home/suites/media/default.nix +++ b/snowfall/modules/home/suites/media/default.nix @@ -13,6 +13,10 @@ in { cmus.enable = true; mpv.enable = true; }; + + tools = { + ffmpeg.enable = true; + }; }; }; } diff --git a/snowfall/modules/home/tools/default.nix b/snowfall/modules/home/tools/default.nix index dc93cda..da6741a 100644 --- a/snowfall/modules/home/tools/default.nix +++ b/snowfall/modules/home/tools/default.nix @@ -3,5 +3,6 @@ with lib; with lib.${namespace}; { imports = [ (mkSimpleTool "cloc" {}) + (mkSimpleTool "ffmpeg" {}) ]; } |