diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/emacs.nix | 9 |
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 + ]; } |