moved docker-compose

This commit is contained in:
Alexander Szczepanski
2021-08-18 21:20:34 +02:00
parent da0639acf4
commit 53a26d6a5e
3 changed files with 16 additions and 5 deletions

View File

@ -4,4 +4,8 @@
virtualisation = {
docker.enable = true;
};
environment.systemPackages = with pkgs; [
docker-compose
];
}

View File

@ -38,6 +38,12 @@
matchBlocks."szczepan.ski" = {
hostname = "szczepan.ski";
localForwards = [ {
bind.address = "127.0.0.1";
bind.port = 8386;
host.address = "127.0.0.1";
host.port = 8384;
} ];
};
matchBlocks."nixos-vm" = {
@ -61,6 +67,12 @@
matchBlocks."homeserver" = {
hostname = "192.168.1.100";
localForwards = [ {
bind.address = "127.0.0.1";
bind.port = 8385;
host.address = "127.0.0.1";
host.port = 8384;
} ];
};
};

View File

@ -23,11 +23,6 @@
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [
docker-compose
glances
htop
git
nodejs
];
programs.mtr.enable = true;