adds editors category
This commit is contained in:
parent
90c9f87eda
commit
449e93c093
7 changed files with 17 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./dunst ./emacs ./agenix.nix ./diskstation ./picom.nix ];
|
||||
imports = [ ./dunst ./agenix.nix ./diskstation ./picom.nix ];
|
||||
|
||||
home-manager.users.moritz.services = { kdeconnect.enable = true; };
|
||||
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
{ config, lib, pkgs, inputs, ... }:
|
||||
|
||||
let
|
||||
emacs = with pkgs;
|
||||
((emacsPackagesNgGen emacsGcc).emacsWithPackages (epkgs: [ epkgs.vterm ]));
|
||||
in {
|
||||
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
|
||||
|
||||
home-manager.users.moritz = {
|
||||
programs.emacs.enable = true;
|
||||
programs.emacs.package = emacs;
|
||||
services.emacs.enable = true;
|
||||
services.emacs.package = emacs;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
## Emacs itself
|
||||
binutils # native-comp needs 'as', provided by this
|
||||
|
||||
## Doom dependencies
|
||||
git
|
||||
(ripgrep.override { withPCRE2 = true; })
|
||||
gnutls # for TLS connectivity
|
||||
|
||||
## Optional dependencies
|
||||
fd # faster projectile indexing
|
||||
imagemagick # for image-dired
|
||||
zstd # for undo-fu-session/undo-tree compression
|
||||
|
||||
## Module dependencies
|
||||
# :checkers spell
|
||||
# (aspellWithDicts (ds: with ds; [ en en-computers en-science de ]))
|
||||
hunspell
|
||||
hunspellDicts.en_GB-ize
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.de_DE
|
||||
# :checkers grammar
|
||||
languagetool
|
||||
# :tools lookup & :lang org +roam
|
||||
sqlite
|
||||
# :lang latex & :lang org (latex previews)
|
||||
texlive.combined.scheme-full
|
||||
# :lang nix
|
||||
nixfmt # for formating nix
|
||||
# :lang markdown
|
||||
pandoc
|
||||
# :app everywhere
|
||||
xdotool
|
||||
xorg.xwininfo
|
||||
xclip
|
||||
xorg.xprop
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue