nix_config/home/apps/default.nix

18 lines
241 B
Nix
Raw Normal View History

2024-09-05 20:28:09 +02:00
{
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
];
}