all repos — archive/nixos-configuration @ c0287ca3a1e7168f016673c51668c1e764a0723b

Superseded by nixfiles

Don't install mu on darwin; it's broken

Alan Pearce
commit

c0287ca3a1e7168f016673c51668c1e764a0723b

parent

84be4b98580bb5600f45253af5b5e093c97199f9

1 file changed, 5 insertions(+), 2 deletions(-)

changed files
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;