remove lmms

This commit is contained in:
smayzy 2026-01-17 12:14:04 +01:00
parent afcc0dadfe
commit 3566c46ac5
2 changed files with 0 additions and 21 deletions

View File

@ -2,6 +2,5 @@
{
imports = [
./pipewire.nix
./lmms.nix
];
}

View File

@ -1,20 +0,0 @@
{
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 ];
};
}