mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-31 16:56:06 -07:00
15 lines
319 B
Nix
15 lines
319 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 = lib.mkIf cfg.enable {
|
|
services.flatpak.enable = true;
|
|
};
|
|
}
|