nixos-config/systems/mc5/configuration.nix
2022-07-20 19:28:12 +02:00

22 lines
378 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./modules/generic.nix
#./modules/ceph-common.nix
./modules/borg.nix
./modules/powerdns.nix
];
#services.ceph = {
# osd.enable = true;
# osd.daemons = [ "0" ];
#};
documentation.enable = false;
system.stateVersion = "21.11";
}
# vim: set et ts=2 sw=2 ai: