18 lines
241 B
Nix
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
|
||
|
];
|
||
|
}
|