summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/user-interface.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/user-interface.nix b/modules/user-interface.nix
index 660bb4cb..7c2e31c6 100644
--- a/modules/user-interface.nix
+++ b/modules/user-interface.nix
@@ -52,7 +52,6 @@ in
 
     python3Packages.keyring
     isync
-    unstable.mu
     msmtp
     html2text
 
@@ -71,7 +70,11 @@ in
     signal-desktop
 
     trash-cli
-  ];
+  ] ++ (if !stdenv.isDarwin
+  then [
+    unstable.mu
+  ]
+  else []);
 
   nixpkgs.config.allowUnfree = true;