Fix excessively long lines
This keeps nix code within 100 columns except for one string in a comment.
This commit is contained in:
parent
c12417c362
commit
2cc2bdaf63
2 changed files with 16 additions and 6 deletions
13
flake.nix
13
flake.nix
|
|
@ -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 = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue