nixos-config/systems/mc5/configuration.nix

22 lines
344 B
Nix
Raw Normal View History

2021-12-03 13:35:37 +01:00
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./modules/generic.nix
2021-12-20 18:53:37 +01:00
./modules/ceph-common.nix
2021-12-24 18:27:19 +01:00
./modules/borg.nix
2021-12-03 13:35:37 +01:00
];
2021-12-20 18:53:37 +01:00
2021-12-06 11:10:11 +01:00
services.ceph = {
2021-12-20 18:53:37 +01:00
osd.enable = true;
osd.daemons = [ "0" ];
2021-12-06 11:10:11 +01:00
};
2021-12-20 18:53:37 +01:00
documentation.enable = false;
system.stateVersion = "21.11";
2021-12-03 13:35:37 +01:00
}
# vim: set et ts=2 sw=2 ai: