aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/emacs.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 15:09:00 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 15:09:00 -0800
commita5f8200954567e82b9cfb4a699f418b0a0e4dbf5 (patch)
tree81a5cb7c7b116fb0e6a767677682d1781683a477 /users/fcuny/desktop/emacs.nix
parentalacritty: switch back to white background (diff)
downloadinfra-a5f8200954567e82b9cfb4a699f418b0a0e4dbf5.tar.gz
emacs: pull community's overlay
We need the community overlay to get the pure GTK port of Emacs for now.
Diffstat (limited to 'users/fcuny/desktop/emacs.nix')
-rw-r--r--users/fcuny/desktop/emacs.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/users/fcuny/desktop/emacs.nix b/users/fcuny/desktop/emacs.nix
index 4a50838..67cf61c 100644
--- a/users/fcuny/desktop/emacs.nix
+++ b/users/fcuny/desktop/emacs.nix
@@ -1,10 +1,7 @@
{ lib, config, pkgs, ... }:
{
- programs = {
- emacs= {
- enable = true;
- package=unstable.emacsPgtkGcc;
- };
- };
+ home.packages = with pkgs; [
+ emacsPgtkGcc
+ ];
}