feat: finished migration
This commit is contained in:
parent
0ace76d28b
commit
2f6ed21f0c
3 changed files with 0 additions and 91 deletions
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
cfg = config.marleyos.bundles.desktop;
|
|
||||||
|
|
||||||
inherit (lib.marleyos) enabled;
|
|
||||||
in {
|
|
||||||
options.marleyos.bundles.desktop.enable = lib.mkEnableOption "desktop";
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
marleyos = {
|
|
||||||
isDesktop = true;
|
|
||||||
|
|
||||||
appearance = {
|
|
||||||
base = enabled;
|
|
||||||
gtk = enabled;
|
|
||||||
qt = enabled;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
cli = enabled;
|
|
||||||
tui = enabled;
|
|
||||||
gui = enabled;
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
|
||||||
# syncthing = enabled;
|
|
||||||
udiskie = enabled;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
cfg = config.marleyos.bundles.mac;
|
|
||||||
|
|
||||||
inherit (lib.marleyos) enabled disabled;
|
|
||||||
in {
|
|
||||||
options.marleyos.bundles.mac.enable = lib.mkEnableOption "mac";
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
marleyos = {
|
|
||||||
isDesktop = true;
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
cli = enabled;
|
|
||||||
journalctl = disabled;
|
|
||||||
systemctl = disabled;
|
|
||||||
|
|
||||||
tui = enabled;
|
|
||||||
cava = disabled;
|
|
||||||
ncmpcpp = disabled;
|
|
||||||
|
|
||||||
wezterm = enabled;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
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