nixos-config/systems/mc4/configuration.nix

32 lines
798 B
Nix
Raw Permalink Normal View History

2021-11-06 13:01:22 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./modules/generic.nix
2021-11-23 11:17:26 +01:00
./modules/postgresql.nix
2023-01-29 17:44:17 +01:00
#./modules/rclone.nix
./modules/borg.nix
./modules/ihatemoney.nix
2022-07-19 13:32:20 +02:00
./modules/tandoor.nix
2022-07-20 20:09:15 +02:00
./modules/powerdns-web.nix
2022-09-25 00:31:22 +02:00
./modules/zabbix-server.nix
2022-12-14 14:24:46 +01:00
#./modules/update-postgresql.nix
2021-11-06 13:01:22 +01:00
];
2022-12-14 14:24:46 +01:00
#set postgresql to 14 because of timescaledb
services.postgresql = {
package = pkgs.postgresql_14;
};
programs.atop.atopacctService.enable = false;
2021-12-18 22:26:58 +01:00
system.stateVersion = "22.05";
2021-11-06 13:01:22 +01:00
}
2021-11-17 10:20:02 +01:00
# vim: set et ts=2 sw=2 ai: