ooooooooooooohhhhhh, is that alllllllll

This commit is contained in:
Chris Kruining 2025-07-31 08:15:35 +02:00
parent 41acda91f4
commit 8282155619
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
3 changed files with 2 additions and 3 deletions

View file

@ -0,0 +1,15 @@
{ config, lib, pkgs, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.application.studio;
in
{
options.${namespace}.application.studio = {
enable = mkEnableOption "enable Bricklink Studio";
};
config = mkIf cfg.enable {
home.packages = with pkgs.${namespace}; [ studio ];
};
}