about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 14:30:23 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 14:30:23 -0800
commit06a8d0e1a9dc61eac41b441d28d3de27fb8feae8 (patch)
treeb2c3a80fe5e02e39f4d5129ac5996f00e193584f
parentsway: set the scaling factor (diff)
downloadworld-06a8d0e1a9dc61eac41b441d28d3de27fb8feae8.tar.gz
emacs: let's go!
Diffstat (limited to '')
-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;
+    };
+  };
+}