Skip to content

Commit

Permalink
containers(wordpress): drop
Browse files Browse the repository at this point in the history
This was a cool experiment however I no longer have a need for the
WordPress container.
  • Loading branch information
donovanglover committed Nov 1, 2024
1 parent c0ebf43 commit 125dea6
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions modules/containers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,48 +104,5 @@ in
hardware.graphics.enable = true;
};
};

wordpress = {
privateNetwork = true;
ephemeral = true;
autoStart = true;

hostAddress = "192.168.100.24";
localAddress = "192.168.100.39";

specialArgs = {
inherit nix-config;
};

config =
{ nix-config, pkgs, ... }:
{
imports = with nix-config.nixosModules; [
system
];

users.defaultUserShell = pkgs.fish;

programs = {
fish.enable = true;
neovim.enable = true;
};

environment = {
systemPackages = with pkgs; [ kitty ];
shells = with pkgs; [ fish ];

variables = {
TERM = "xterm-kitty";
};
};

networking = {
firewall.allowedTCPPorts = [ 80 ];
};

services.wordpress.sites.localhost = { };
};
};
};
}

0 comments on commit 125dea6

Please sign in to comment.