switched to EmacsGcc
parent
7abbd8df7a
commit
1457193cc4
|
@ -1,24 +1,20 @@
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
emacsVtermGit = with pkgs;
|
emacs = with pkgs;
|
||||||
((emacsPackagesNgGen emacsGit).emacsWithPackages (epkgs: [ epkgs.vterm ]));
|
((emacsPackagesNgGen emacsGcc).emacsWithPackages (epkgs: [ epkgs.vterm ]));
|
||||||
in {
|
in {
|
||||||
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
|
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
|
||||||
|
|
||||||
home-manager.users.moritz = {
|
home-manager.users.moritz = {
|
||||||
programs.emacs.enable = true;
|
programs.emacs.enable = true;
|
||||||
programs.emacs.package = emacsVtermGit;
|
programs.emacs.package = emacs;
|
||||||
services.emacs.enable = true;
|
services.emacs.enable = true;
|
||||||
services.emacs.package = emacsVtermGit;
|
services.emacs.package = emacs;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
## Emacs itself
|
## Emacs itself
|
||||||
binutils # native-comp needs 'as', provided by this
|
binutils # native-comp needs 'as', provided by this
|
||||||
# emacsPgtkGcc # 28 + pgtk + native-comp
|
|
||||||
# ((emacsPackagesNgGen emacsPgtkGcc).emacsWithPackages (epkgs: [
|
|
||||||
# epkgs.vterm
|
|
||||||
# ]))
|
|
||||||
|
|
||||||
## Doom dependencies
|
## Doom dependencies
|
||||||
git
|
git
|
||||||
|
@ -45,6 +41,8 @@ in {
|
||||||
texlive.combined.scheme-full
|
texlive.combined.scheme-full
|
||||||
# :lang nix
|
# :lang nix
|
||||||
nixfmt # for formating nix
|
nixfmt # for formating nix
|
||||||
|
# :lang markdown
|
||||||
|
pandoc
|
||||||
# :app everywhere
|
# :app everywhere
|
||||||
xdotool
|
xdotool
|
||||||
xorg.xwininfo
|
xorg.xwininfo
|
||||||
|
|
Loading…
Reference in New Issue