This commit is contained in:
iFargle 2023-07-01 19:37:34 +09:00
parent d5676aefa2
commit 6598a6139f

View file

@ -1,8 +1,10 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
# Configure BASH exports # Configure BASH exports
programs.powerline-go.enable = true;
programs = { programs = {
bash = { bash = {
enableCompletion = true; enableCompletion = true;
shellAliases = { shellAliases = {
d = "docker"; d = "docker";
dc = "docker-compose"; dc = "docker-compose";
@ -29,5 +31,4 @@
}; };
}; };
}; };
} }