added mpv to desktop

This commit is contained in:
2026-07-30 19:38:12 +01:00
parent 56aed1cf2d
commit 00f6800290

View File

@@ -3,7 +3,7 @@
moduleWithSystem, moduleWithSystem,
... ...
}: { }: {
flake.nixosModules.desktop = moduleWithSystem ({...}: let flake.nixosModules.desktop = moduleWithSystem ({pkgs, ...}: let
modules = with self.nixosModules; [ modules = with self.nixosModules; [
core core
hyprland hyprland
@@ -13,5 +13,8 @@
]; ];
in { in {
imports = modules; imports = modules;
environment.systemPackages = with pkgs; [
mpv
];
}); });
} }