nix-config/modules/nix/audio/lmms.nix
smayzy 631c57933a
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 51s
format code
2025-11-27 13:47:08 +01:00

21 lines
305 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.lmms.enable = mkOption {
type = types.bool;
default = false;
description = "lmms";
};
config = mkIf config.smayzy.lmms.enable {
environment.systemPackages = with pkgs; [ lmms ];
};
}