aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny
diff options
context:
space:
mode:
Diffstat (limited to 'nix/users/fcuny')
-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";