diff options
author | sefidel <contact@sefidel.net> | 2024-08-04 22:24:39 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-08-06 16:01:39 +0900 |
commit | 2e3f69dfceecbc8c392b6c3e5076cd3aee56b069 (patch) | |
tree | fef94fa94127c98762358449de97fde805c2d9d3 /modules/services/atticd.nix | |
parent | 336c701e81ad9c2ef321b933f9406b739ffe5aac (diff) | |
download | nixrc-2e3f69dfceecbc8c392b6c3e5076cd3aee56b069.tar.gz nixrc-2e3f69dfceecbc8c392b6c3e5076cd3aee56b069.zip |
feat(modules/atticd)!: import atticd inside module
Diffstat (limited to 'modules/services/atticd.nix')
-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"; |