nixos/machines/serverle/system.nix

11 lines
139 B
Nix
Raw Normal View History

2022-12-05 22:51:46 +01:00
# enabled system services
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.system = {
docker.enable = true;
};
}