diff options
Diffstat (limited to 'modules/services')
-rw-r--r-- | modules/services/atticd.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/services/atticd.nix b/modules/services/atticd.nix index ef79871..e2a7f55 100644 --- a/modules/services/atticd.nix +++ b/modules/services/atticd.nix @@ -1,10 +1,14 @@ -{ config, lib, pkgs, ... }: +{ config, inputs, lib, pkgs, ... }: with lib; let cfg = config.modules.services.atticd; in { + imports = [ + inputs.attic.nixosModules.atticd + ]; + options.modules.services.atticd = { enable = mkEnableOption "Whether to enable atticd, a Multi-tenant Nix Binary Cache"; |