emacs
This commit is contained in:
parent
10c4152f54
commit
1e29764aee
5 changed files with 38 additions and 8 deletions
29
modules/emacs.nix
Normal file
29
modules/emacs.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ pkgs, inputs, lib, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
direnv
|
||||
];
|
||||
|
||||
# nixpkgs.overlays = [
|
||||
# inputs.emacs-overlay.overlay
|
||||
# ];
|
||||
|
||||
services.emacs = {
|
||||
install = true;
|
||||
enable = false;
|
||||
package = with pkgs; ((emacsPackagesFor (emacs-pgtk.overrideAttrs (old: {
|
||||
passthru = old.passthru // {
|
||||
treeSitter = true;
|
||||
};
|
||||
}))).emacsWithPackages (epkgs: with epkgs; [
|
||||
# treesitter bits
|
||||
treesit-grammars.with-all-grammars
|
||||
|
||||
vterm
|
||||
pdf-tools
|
||||
]));
|
||||
defaultEditor = lib.mkDefault true;
|
||||
};
|
||||
|
||||
}
|
|
@ -8,12 +8,14 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
amberol
|
||||
celluloid
|
||||
ddcutil
|
||||
gnome-console
|
||||
gnome-obfuscate
|
||||
gnome-boxes
|
||||
gnome-tweaks
|
||||
qbittorrent
|
||||
gnomeExtensions.caffeine
|
||||
gnomeExtensions.brightness-control-using-ddcutil
|
||||
spotify
|
||||
ghostty
|
||||
fractal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue