this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: emacs as a service on home manager

+8 -2
+8 -2
home.nix
··· 78 78 # 79 79 # if you don't want to manage your shell through Home Manager. 80 80 home.sessionVariables = { 81 - # EDITOR = "emacs"; 82 - EDITOR = "emacs"; 83 81 VISUAL = "emacs"; 84 82 BROWSER = "firefox"; 85 83 }; ··· 116 114 extraConfig = '' 117 115 allow-emacs-pinentry 118 116 ''; 117 + }; 118 + 119 + emacs = { 120 + enable = true; 121 + 122 + client.enable = true; 123 + 124 + defaultEditor = true; 119 125 }; 120 126 }; 121 127