feat(home): server bundle
This commit is contained in:
parent
863dc77e3d
commit
45120e52e2
1 changed files with 28 additions and 0 deletions
28
modules/home/bundles/server/default.nix
Normal file
28
modules/home/bundles/server/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.bundles.server;
|
||||
|
||||
inherit (lib.marleyos) enabled disabled;
|
||||
in {
|
||||
options.marleyos.bundles.server.enable = lib.mkEnableOption "server";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos = {
|
||||
isServer = true;
|
||||
|
||||
programs = {
|
||||
cli = enabled;
|
||||
tui = enabled;
|
||||
|
||||
neo = lib.mkForce disabled;
|
||||
rbw = lib.mkForce disabled;
|
||||
amfora = lib.mkForce disabled;
|
||||
cava = lib.mkForce disabled;
|
||||
ncmpcpp = lib.mkForce disabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue