nixos-config/systems/vpn/configuration.nix
2021-12-21 14:51:06 +01:00

21 lines
349 B
Nix

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