diff --git a/modules/darwin/home-manager.nix b/modules/darwin/home-manager.nix index 0bcb20c..e64e84e 100644 --- a/modules/darwin/home-manager.nix +++ b/modules/darwin/home-manager.nix @@ -11,7 +11,7 @@ let # Define the content of your file as a derivation myEmacsLauncher = pkgs.writeScript "emacs-launcher.command" '' #!/bin/sh - emacsclient -c -n & + emacs & ''; sharedFiles = import ../shared/files.nix { inherit config pkgs; }; additionalFiles = import ./files.nix { inherit user config pkgs; }; @@ -85,6 +85,7 @@ in dock = { enable = true; entries = [ + { path = "/System/Applications/Launchpad.app/"; } { path = "/System/Applications/Mail.app/"; } { path = "/Applications/MailMate.app/"; } { path = "/Applications/1Password.app/"; } diff --git a/modules/nixos/README.md b/modules/nixos/README.md index bfa2a9e..22dc572 100644 --- a/modules/nixos/README.md +++ b/modules/nixos/README.md @@ -7,5 +7,4 @@ ├── files.nix # Non-Nix, static configuration files (now immutable!) ├── home-manager.nix # Defines user programs ├── packages.nix # List of packages to install for NixOS -├── secrets.nix # Age-encrypted secrets with agenix ```