Compare commits

...
Sign in to create a new pull request.

3 commits
main ... murg

Author SHA1 Message Date
6a967394b3
Add Drupal 2026-03-11 22:47:42 +02:00
767dac0b77
# Enable Docker 2026-02-09 18:51:48 +02:00
4c466cc644
# Use fastfetch instead of neofetch 2026-02-09 18:50:01 +02:00
2 changed files with 22 additions and 1 deletions

View file

@ -66,6 +66,8 @@
443
5201 # iperf3
15835 # Glance
14789 # LibreBooking
14788 # Drupal
];
};
@ -81,6 +83,8 @@
};
};
virtualisation.docker.enable = true;
services = {
openssh = {
enable = true;
@ -107,6 +111,23 @@
enable = true;
settings = import ./glance.nix;
};
drupal = {
enable = true;
sites = {
"localhost" = {
enable = true;
extraConfig = ''
$base_url="http://192.168.1.210:14788";
'';
};
};
};
nginx.virtualHosts."localhost".listen = [
{
addr = "0.0.0.0";
port = 14788;
}
];
};
environment.variables.EDITOR = "nvim";

View file

@ -5,7 +5,7 @@
home.homeDirectory = "/home/wekuz";
home.packages = with pkgs; [
neofetch
fastfetch
# Utilities
neovim