1
1
Fork 0
nixos/options/custom/files/default.nix
Myned b2489b2e04
nix: format with alejandra
Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 19:43:24 -05:00

13 lines
197 B
Nix

{
config,
lib,
...
}:
with lib; {
config.custom.files = mkIf config.custom.default {
agenix.enable = true;
dev.enable = true;
mnt.enable = true;
nixos.enable = true;
};
}