mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
darwin: re-enable ~/Applications symlinks (#3139)
Tested-by: supermarin@users.noreply.github.com
This commit is contained in:
parent
916811c8f9
commit
f520832a47
1 changed files with 1 additions and 3 deletions
|
@ -1,9 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Disabled for now due to conflicting behavior with nix-darwin. See
|
||||
# https://github.com/nix-community/home-manager/issues/1341#issuecomment-687286866
|
||||
config = lib.mkIf (false && pkgs.stdenv.hostPlatform.isDarwin) {
|
||||
config = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
||||
# Install MacOS applications to the user environment.
|
||||
home.file."Applications/Home Manager Apps".source = let
|
||||
apps = pkgs.buildEnv {
|
||||
|
|
Loading…
Reference in a new issue