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,6 @@
|
|||
{ pkgs, config, lib, ... }: {
|
||||
home.packages =
|
||||
builtins.attrValues { inherit (pkgs) docker-compose docker-machine; }
|
||||
++ lib.optionals config.programs.helix.enable builtins.attrValues {
|
||||
inherit (pkgs.nodePackages) dockerfile-language-server-nodejs;
|
||||
};
|
||||
home.packages = (builtins.attrValues { inherit (pkgs) docker-compose docker-machine; })
|
||||
++ lib.optionals config.programs.helix.enable (builtins.attrValues { inherit (pkgs.nodePackages) dockerfile-language-server-nodejs; });
|
||||
home.shellAliases = {
|
||||
"dkcd" = "docker-compose down";
|
||||
"dkc" = "docker-compose";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue