nixos-config/systems/vpn/configuration.nix

23 lines
374 B
Nix
Raw Normal View History

2021-12-03 13:22:42 +01:00
{ config, pkgs, ... }:
{
imports =
2021-12-03 13:35:37 +01:00
[
2021-12-03 13:22:42 +01:00
./hardware-configuration.nix
./modules/generic.nix
2021-12-03 17:51:47 +01:00
./modules/headscale.nix
2021-12-21 14:51:06 +01:00
./modules/ceph-common.nix
2021-12-24 18:27:19 +01:00
./modules/borg.nix
2021-12-03 13:22:42 +01:00
];
2021-12-05 19:30:00 +01:00
services.ceph = {
osd.enable = true;
2021-12-21 14:51:06 +01:00
osd.daemons = [ "1" ];
2021-12-05 19:30:00 +01:00
};
2021-12-21 14:51:06 +01:00
documentation.enable = false;
2021-12-05 19:30:00 +01:00
2021-12-21 14:51:06 +01:00
system.stateVersion = "21.11";
2021-12-03 13:22:42 +01:00
}
# vim: set et ts=2 sw=2 ai: