about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/desktop/default.nix1
-rw-r--r--users/fcuny/desktop/emacs.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix
index 10eea44..f5e9a4e 100644
--- a/users/fcuny/desktop/default.nix
+++ b/users/fcuny/desktop/default.nix
@@ -3,6 +3,7 @@
 {
   imports = [
     ./browser.nix
+    ./emacs.nix
     ./gtk.nix
     ./media.nix
     ./sway
diff --git a/users/fcuny/desktop/emacs.nix b/users/fcuny/desktop/emacs.nix
new file mode 100644
index 0000000..4a50838
--- /dev/null
+++ b/users/fcuny/desktop/emacs.nix
@@ -0,0 +1,10 @@
+{ lib, config, pkgs, ... }:
+
+{
+  programs = {
+    emacs= {
+      enable = true;
+      package=unstable.emacsPgtkGcc;
+    };
+  };
+}