nix: use mpv on linux and iina on mac for playing media

This commit is contained in:
Nico 2025-05-03 16:16:00 +10:00
parent 6fad159c38
commit 9567de89d0
4 changed files with 11 additions and 2 deletions

View file

@ -24,6 +24,7 @@
./modules/shell.nix
./modules/linux/desktop.nix
./modules/linux/applications.nix
./modules/linux/hyprland.nix
./modules/linux/stow.nix
./modules/linux/users.nix

View file

@ -10,7 +10,6 @@
element-desktop
thunderbird
keepassxc
mpv
ani-cli
];
}

View file

@ -18,7 +18,8 @@
# nix pkgs
environment.systemPackages = with pkgs; [
]
iina
];
# homebrew pkgs
homebrew = {

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
# nix pkgs
environment.systemPackages = with pkgs; [
mpv
]
}