add emacs file, with its packages. kinda broken yet
This commit is contained in:
parent
b1a24588a9
commit
85e3097380
8
home.nix
8
home.nix
@ -6,6 +6,7 @@ with lib.hm.gvariant;
|
||||
./modules/dconf.nix
|
||||
./modules/shell.nix
|
||||
./modules/firefox.nix
|
||||
# ./modules/emacs.nix
|
||||
];
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
@ -35,13 +36,6 @@ with lib.hm.gvariant;
|
||||
# pyqt6
|
||||
# # pyqt6-qt6
|
||||
# pyqt6-sip]))
|
||||
# (pkgs.emacsWithPackagesFromUsePackage {
|
||||
# package = pkgs.emacs29-pgtk;
|
||||
# config = ~/.emacs.d/init.el;
|
||||
# extraEmacsPackages = epkgs: [
|
||||
# epkgs.dash;
|
||||
# ]
|
||||
# })
|
||||
# pkgs.fetchFromGitHub
|
||||
];
|
||||
|
||||
|
20
modules/emacs.nix
Normal file
20
modules/emacs.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, config, pkgs, inputs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
(pkgs.emacsWithPackages {
|
||||
package = pkgs.emacs29;
|
||||
# config = ~/.emacs.d/init.el;
|
||||
extraEmacsPackages = epkgs: [
|
||||
epkgs.dash
|
||||
epkgs.compat
|
||||
epkgs.marginalia
|
||||
epkgs.page-break-lines
|
||||
epkgs.rainbow-mode
|
||||
epkgs.powershell
|
||||
epkgs.diminish
|
||||
# epkgs.general
|
||||
epkgs.eldoc
|
||||
];
|
||||
}
|
||||
)];
|
||||
}
|
Loading…
Reference in New Issue
Block a user