Remove 'with' from most modules
This commit is contained in:
parent
40032f7fd9
commit
7459ae0e96
27 changed files with 222 additions and 230 deletions
|
|
@ -1,9 +1,10 @@
|
|||
{ pkgs, config, lib, ... }: {
|
||||
home.packages =
|
||||
lib.optionals config.programs.helix.enable builtins.attrValues
|
||||
{
|
||||
lib.optionals config.programs.helix.enable
|
||||
(builtins.attrValues {
|
||||
inherit (pkgs) clang-tools cmake-language-server;
|
||||
} ++ lib.optionals config.programs.kakoune.enable builtins.attrValues {
|
||||
}) ++
|
||||
lib.optionals config.programs.kakoune.enable (builtins.attrValues {
|
||||
inherit (pkgs) clang-tools cmake-language-server;
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue