add lmms for fun
This commit is contained in:
parent
c7c90d0df2
commit
d42ab5e5dd
3 changed files with 18 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
#resolve.enable = true;
|
||||
blender.enable = true;
|
||||
kdenlive.enable = true;
|
||||
lmms.enable = true;
|
||||
};
|
||||
};
|
||||
hardware = {
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
./gimp
|
||||
./blender
|
||||
./kdenlive
|
||||
./lmms
|
||||
];
|
||||
}
|
||||
|
|
16
modules/desktop/media/lmms/default.nix
Normal file
16
modules/desktop/media/lmms/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ outputs, options, config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.media.lmms;
|
||||
in
|
||||
{
|
||||
options.modules.desktop.media.lmms = {
|
||||
enable = mkEnableOption false;
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
users.users.sako.packages = with pkgs; [
|
||||
lmms
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue