diff --git a/modules/system/desktop/default.nix b/modules/system/desktop/default.nix index d6fc08b..b72520a 100644 --- a/modules/system/desktop/default.nix +++ b/modules/system/desktop/default.nix @@ -3,7 +3,7 @@ moduleWithSystem, ... }: { - flake.nixosModules.desktop = moduleWithSystem ({...}: let + flake.nixosModules.desktop = moduleWithSystem ({pkgs, ...}: let modules = with self.nixosModules; [ core hyprland @@ -13,5 +13,8 @@ ]; in { imports = modules; + environment.systemPackages = with pkgs; [ + mpv + ]; }); }