Files
Nomarchy/features/apps/elephant/default.nix
Bernardo Magri e6b7269b3c
All checks were successful
Check / eval-and-lint (push) Successful in 6m39s
feat: move core apps to downstream and make app modules opt-in
2026-05-31 15:44:50 +01:00

11 lines
187 B
Nix

{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.nomarchy.apps.elephant.enable {
xdg.configFile."elephant" = {
source = ./config;
recursive = true;
};
};
}