This commit is contained in:
Filippo Berto 2024-11-21 14:13:58 +01:00
parent ec8d2fd17d
commit cf88840f0d
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
5 changed files with 690 additions and 8 deletions

View file

@ -5,14 +5,15 @@
}:
{
home.packages =
(builtins.attrValues { inherit (pkgs) docker-compose; })
++ lib.optionals config.programs.helix.enable (
# (builtins.attrValues { inherit (pkgs) docker-compose; })
# ++
lib.optionals config.programs.helix.enable (
builtins.attrValues { inherit (pkgs.nodePackages) dockerfile-language-server-nodejs; }
);
home.shellAliases = {
"dkcd" = "docker-compose down";
"dkc" = "docker-compose";
"dkcu" = "docker-compose up";
"dk" = "docker";
};
# home.shellAliases = {
# "dkcd" = "docker-compose down";
# "dkc" = "docker-compose";
# "dkcu" = "docker-compose up";
# "dk" = "docker";
# };
}