15 lines
233 B
Nix
15 lines
233 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
|
|
];
|
|
}
|