aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-04-18 09:06:26 -0700
committerFranck Cuny <franck@fcuny.net>2025-04-18 09:06:26 -0700
commit7552bdc392fed591615989f944597cea8eb9f030 (patch)
treeb144652d534c0b5ce0b4002d2256b333356b8edd
parentdo not set the prompt for kubie (diff)
downloadinfra-7552bdc392fed591615989f944597cea8eb9f030.tar.gz
use emacs from home manager and disable native comp
-rw-r--r--nix/users/fcuny/dev.nix8
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";