ctucx.git: nixfiles

ctucx' nixfiles

commit d9b2647ef23cd76cf8b670b559c3cb91d5407576
parent 7c46f04462cce4d80ebf11bc18a5f31d21b6388d
Author: Leah (ctucx) <git@ctu.cx>
Date: Mon, 17 Jun 2024 09:04:57 +0200

configurations/darwin: use IINA from homebre, not nixpkgs
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/configurations/darwin/programs/iina.nix b/configurations/darwin/programs/iina.nix
@@ -2,6 +2,11 @@
 
 {
 
+  homebrew.enable  = true;
+  homebrew.casks   = [
+    "iina"
+  ];
+
   system.defaults.CustomUserPreferences = {
     "com.colliderli.iina" = {
       # disable "music-mode"

@@ -28,7 +33,6 @@
   };
 
   home-manager.users.leah.home.packages = with pkgs; [
-    iina
     open-in-mpv
   ];