ah well also emacs

This commit is contained in:
Olaf 2025-05-20 20:37:19 +02:00
parent 00db155874
commit 372e15742d
2 changed files with 2 additions and 2 deletions

View File

@ -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/"; }

View File

@ -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
```