nix-config/modules/nix/audio/lmms.nix
smayzy fec12375cf
Some checks failed
nixos config pipeline / show-flake (push) Successful in 26s
nixos config pipeline / deploy (push) Has been cancelled
add lmms module
2025-11-23 13:35:49 +01:00

16 lines
297 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 ];
};
}