diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-04-18 09:06:26 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-04-18 09:06:26 -0700 |
| commit | 7552bdc392fed591615989f944597cea8eb9f030 (patch) | |
| tree | b144652d534c0b5ce0b4002d2256b333356b8edd /nix/users/fcuny/dev.nix | |
| parent | do not set the prompt for kubie (diff) | |
| download | infra-7552bdc392fed591615989f944597cea8eb9f030.tar.gz | |
use emacs from home manager and disable native comp
Diffstat (limited to 'nix/users/fcuny/dev.nix')
| -rw-r--r-- | nix/users/fcuny/dev.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nix/users/fcuny/dev.nix b/nix/users/fcuny/dev.nix index 074ab0e..038e5ce 100644 --- a/nix/users/fcuny/dev.nix +++ b/nix/users/fcuny/dev.nix @@ -1,8 +1,6 @@ { config, pkgs, ... }: { home.packages = with pkgs; [ - emacs - aider-chat # go @@ -24,6 +22,12 @@ rustup ]; + programs.emacs = { + enable = true; + # https://github.com/NixOS/nixpkgs/issues/395169 + package = pkgs.emacs.override { withNativeCompilation = false; }; + }; + programs.go = { enable = true; goPath = ".local/share/pkg.go"; |
