All checks were successful
Check flake syntax / flake-check (push) Successful in 13m44s
35 lines
705 B
Nix
35 lines
705 B
Nix
{ self, config, lib, pkgs, inputs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
networking = {
|
|
hostName = mkDefault "zineshop";
|
|
useDHCP = false;
|
|
};
|
|
|
|
imports = [
|
|
inputs.malobeo.nixosModules.malobeo.metrics
|
|
inputs.malobeo.nixosModules.malobeo.printing
|
|
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.printing.enable = true;
|
|
services.malobeo.printing.enable = true;
|
|
|
|
services.zineshop.enable = false;
|
|
networking.firewall.allowedTCPPorts = [ 8080 ];
|
|
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
}
|
|
|