10 lines
262 B
Nix
10 lines
262 B
Nix
# `system.caching.*` — Attic + Cachix; exported again as `nixosModules.systemCaching`.
|
|
{ self, ... }: {
|
|
flake.nixosModules.systemCaching = {
|
|
imports = [
|
|
self.nixosModules.systemCachingAttic
|
|
self.nixosModules.systemCachingCachix
|
|
];
|
|
};
|
|
}
|