diff options
| author | venomade <venomade@venomade.com> | 2026-03-06 00:09:04 +0000 |
|---|---|---|
| committer | venomade <venomade@venomade.com> | 2026-03-06 00:09:04 +0000 |
| commit | a6543a0ba0e5399515e3dbe507a8bd12958839cc (patch) | |
| tree | 8de9d667e644fcda3c40440bd23a9d30666a175b /home.nix | |
| parent | a568a964fd6a9efba388b2b4919339c0b7dfe51d (diff) | |
Add Emacs Darwin to the pkgs Other neovim and tangential things
Diffstat (limited to 'home.nix')
| -rw-r--r-- | home.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/home.nix b/home.nix index 7607adc..49dd79a 100644 --- a/home.nix +++ b/home.nix @@ -1,16 +1,26 @@ { config, lib, pkgs, ... }: +let + emacsFlake = builtins.getFlake "github:nix-giant/nix-darwin-emacs/065050b9e06a30c01b41539b75464fff972fecd6"; +in { home.username = "venomade"; home.homeDirectory = "/Users/venomade"; home.packages = with pkgs; [ + # Neovim neovim imagemagick fzf ripgrep + # Emacs + (emacsFlake.packages.${system}.emacs-30) + + # Nix + nil + # Lua lua-language-server lua5_4 @@ -25,7 +35,8 @@ yazi zk lima - ]; + + ]; programs.git = { enable = true; |
