diff --git a/nodes/hosts/common/home/jay/home.nix b/nodes/hosts/common/home/jay/home.nix index 2d9cc9f..7d79c4d 100644 --- a/nodes/hosts/common/home/jay/home.nix +++ b/nodes/hosts/common/home/jay/home.nix @@ -12,6 +12,7 @@ ./programs/alacritty.nix ./programs/bash.nix ./programs/btop.nix + ./programs/emacs.nix ./programs/git.nix ./programs/hyprland.nix ./programs/hyprlock.nix diff --git a/nodes/hosts/common/home/jay/programs/emacs.nix b/nodes/hosts/common/home/jay/programs/emacs.nix new file mode 100644 index 0000000..0980488 --- /dev/null +++ b/nodes/hosts/common/home/jay/programs/emacs.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.emacs = { + enable = true; + }; +}