feat(apps,media): move media apps to media.nix

This commit is contained in:
Guz
2025-10-27 17:14:30 -03:00
parent d3dfb15515
commit 356850d653
3 changed files with 15 additions and 6 deletions

View File

@@ -67,12 +67,6 @@
# Social
# vesktop
# Media creation
krita
reaper
ffmpeg
exiftool
legcord
# Keyboard

View File

@@ -7,6 +7,7 @@
./apps.nix
./browser.nix
./media.nix
];
# The *state version* indicates which default

14
home/guz/media.nix Normal file
View File

@@ -0,0 +1,14 @@
{
lib,
osConfig,
pkgs,
...
}: {
home.packages = with pkgs; [
exiftool
ffmpeg
krita
reaper
];
}