Fix excessively long lines

This keeps nix code within 100 columns except for one string in a
comment.
This commit is contained in:
Marien Zwart 2024-05-07 23:19:43 +10:00
parent c12417c362
commit 2cc2bdaf63
No known key found for this signature in database
2 changed files with 16 additions and 6 deletions

View file

@ -56,9 +56,16 @@
# Current Doom + NixOS 23.11 requires emacs-overlay: Doom pins
# emacs-fish-completion, which moved from gitlab to github recently
# enough stable nixpkgs pulls it from the wrong source.
doom-minimal = (pkgs.callPackages self (common // { doomDir = ./doomdirs/minimal; })).doomEmacs;
doom-full = (pkgs.callPackages self (common // { full = true; doomDir = ./doomdirs/minimal; })).doomEmacs;
doom-example = (pkgs.callPackages self (common // { doomDir = ./doomdirs/example; })).doomEmacs;
doom-minimal = (pkgs.callPackages self (common // {
doomDir = ./doomdirs/minimal;
})).doomEmacs;
doom-full = (pkgs.callPackages self (common // {
full = true;
doomDir = ./doomdirs/minimal;
})).doomEmacs;
doom-example = (pkgs.callPackages self (common // {
doomDir = ./doomdirs/example;
})).doomEmacs;
doom-example-without-loader = (pkgs.callPackages self (common // {
doomDir = ./doomdirs/example;
profileName = "";