feat: Move gui-programs to apps

This commit is contained in:
uttarayan21
2025-03-26 01:17:14 +05:30
parent cf2833d567
commit ceaf555686
10 changed files with 18 additions and 27 deletions

9
home/apps/mpv.nix Normal file
View File

@@ -0,0 +1,9 @@
{pkgs, ...}: {
programs.mpv = {
enable = true;
package =
if pkgs.stdenv.isLinux
then pkgs.mpv-unwrapped.wrapper {mpv = pkgs.mpv-unwrapped.override {sixelSupport = true;};}
else pkgs.mpv;
};
}