mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-06-07 04:06:06 -07:00
23 lines
406 B
Nix
23 lines
406 B
Nix
{ lib, config, ... }:
|
|
|
|
let cfg = config.modules.base-plus;
|
|
in {
|
|
imports = [
|
|
../programs/beancount.nix
|
|
../programs/borg.nix
|
|
../programs/yt-dlp.nix
|
|
];
|
|
|
|
options.modules.base-plus.enable = lib.mkEnableOption "base-plus";
|
|
|
|
config = {
|
|
modules = {
|
|
programs = {
|
|
borg.enable = true;
|
|
beancount.enable = true;
|
|
yt-dlp.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|