[zineshop] init
Some checks failed
Check flake syntax / flake-check (push) Failing after 1m2s

This commit is contained in:
2025-04-11 18:18:30 +02:00
parent 568cce0d48
commit e294fecf7e
5 changed files with 105 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
{ self, config, lib, pkgs, inputs, ... }:
with lib;
{
networking = {
hostName = mkDefault "zineshop";
useDHCP = false;
};
imports = [
inputs.malobeo.nixosModules.malobeo.metrics
inputs.zineshop.nixosModules.zineshop
../modules/malobeo_user.nix
../modules/sshd.nix
];
malobeo.metrics = {
enable = true;
enablePromtail = true;
logNginx = true;
lokiHost = "10.0.0.14";
};
services.zineshop.enable = true;
networking.firewall.allowedTCPPorts = [ 8080 ];
system.stateVersion = "22.11"; # Did you read the comment?
}