about summary refs log tree commit diff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix13
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;