1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../shared/programs/default.nix

19 lines
241 B
Nix
Raw Normal View History

{ pkgs, lib, config, options, ... }:
with lib;
{
imports = [
./citrix
];
options = {
personal = {
programs = {
enable = mkEnableOption "Programs" // {
default = true;
};
};
};
};
}