nixos/modules/dev/unityhub.nix

17 lines
274 B
Nix
Raw Normal View History

2023-07-16 16:07:25 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.unity;
in
{
options.modules.dev.unity = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
unityhub
];
};
}