infrastructure/hosts/hydrogen/default.nix

10 lines
228 B
Nix
Raw Normal View History

{ modulesPath, lib, ... }: {
2022-12-21 19:29:15 +00:00
imports =
2023-04-14 20:47:57 +00:00
lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
(modulesPath + "/virtualisation/digital-ocean-config.nix")
./services
./system
2023-04-14 20:47:57 +00:00
];
2022-12-21 19:29:15 +00:00
}