mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 03:32:08 +01:00
19 lines
241 B
Nix
19 lines
241 B
Nix
{ pkgs, lib, config, options, ... }:
|
|
with lib;
|
|
|
|
{
|
|
imports = [
|
|
./citrix
|
|
];
|
|
|
|
options = {
|
|
personal = {
|
|
programs = {
|
|
enable = mkEnableOption "Programs" // {
|
|
default = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|