all repos — nixfiles @ c0287ca3a1e7168f016673c51668c1e764a0723b

System and user configuration, managed by nix and home-manager

Don't install mu on darwin; it's broken
Alan Pearce alan@alanpearce.eu
Thu, 12 Sep 2019 19:20:17 +0200
commit

c0287ca3a1e7168f016673c51668c1e764a0723b

parent

84be4b98580bb5600f45253af5b5e093c97199f9

2 files changed, 7 insertions(+), 4 deletions(-)

jump to
M modules/user-interface.nixmodules/user-interface.nix
@@ -52,7 +52,6 @@ lxappearance 
     python3Packages.keyring
     isync
-    unstable.mu
     msmtp
     html2text
 
@@ -71,7 +70,11 @@ hexchat     signal-desktop
 
     trash-cli
-  ];
+  ] ++ (if !stdenv.isDarwin
+  then [
+    unstable.mu
+  ]
+  else []);
 
   nixpkgs.config.allowUnfree = true;
 
M packages/emacs.nixpackages/emacs.nix
@@ -120,8 +120,8 @@ ns-auto-titlebar   ] else [
   ])) ++ (with epkgs.elpaPackages; [
     rainbow-mode
-  ]) ++ [
+  ]) ++ (if !stdenv.isDarwin then [
     # From main packages set
 
     pkgs.unstable.mu
-  ])
+  ] else []))