22 lines
350 B
Nix
22 lines
350 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption mkIf mkOption types;
|
|
cfg = config.horseman.apps.visual;
|
|
in {
|
|
options = {
|
|
horseman.apps.visual = {
|
|
enable = mkEnableOption "Apps that run in a visual window";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
];
|
|
};
|
|
}
|