clan-core/clanModules/flake-module.nix
lassulus 640430075a
All checks were successful
checks-impure / test (pull_request) Successful in 1m10s
checks / test (pull_request) Successful in 1m49s
backups: add clanCore backup & clan borgbackup module
2023-11-23 18:12:49 +01:00

14 lines
263 B
Nix

{ inputs, ... }: {
flake.clanModules = {
diskLayouts = {
imports = [
./diskLayouts.nix
inputs.disko.nixosModules.default
];
};
deltachat = ./deltachat.nix;
xfce = ./xfce.nix;
borgbackup = ./borgbackup.nix;
};
}