nix_config/home/apps/default.nix
2024-09-05 12:28:09 -06:00

18 lines
241 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.apps;
in {
options.local.apps.enable = mkEnableOption "Applications and tools";
imports = [
./library.nix
./steam
./terminal
./virtmanager.nix
];
}