mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
10 lines
191 B
Nix
10 lines
191 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
let cfg = config.modules.system.backup;
|
|
in {
|
|
options.modules.system.backup.enable = lib.mkEnableOption "backup";
|
|
config = lib.mkIf cfg.enable {
|
|
};
|
|
|
|
}
|