feat(nixos): Categorize programs; create bundle

This commit is contained in:
punkfairie 2025-01-29 20:58:43 -08:00
parent 69e101209b
commit c1c867b824
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
9 changed files with 67 additions and 13 deletions

View file

@ -0,0 +1,28 @@
{
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 = {
mounts.babeshare = enabled;
appearance = {
base = enabled;
console = enabled;
};
programs = {
cli = enabled;
tui = enabled;
gui = enabled;
};
};
};
}

View file

@ -11,6 +11,8 @@ in {
config = lib.mkIf cfg.enable {
marleyos.programs = {
fish = enabled;
nh = enabled;
};
};
}

View file

@ -0,0 +1,18 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.gui;
inherit (lib.marleyos) enabled;
in {
options.marleyos.programs.gui.enable = lib.mkEnableOption "gui";
config = lib.mkIf cfg.enable {
marleyos.programs = {
lutris = enabled;
steam = enabled;
};
};
}

View file

@ -0,0 +1,16 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.tui;
inherit (lib.marleyos) enabled;
in {
options.marleyos.programs.tui.enable = lib.mkEnableOption "tui";
config = lib.mkIf cfg.enable {
marleyos.programs = {
};
};
}

View file

@ -11,20 +11,10 @@ in {
marleyos = {
hasNvidia = true;
mounts.babeshare = enabled;
bundles.desktop = enabled;
wayland.hyprland = enabled;
appearance = {
base = enabled;
console = enabled;
};
programs = {
fish = enabled;
lutris = enabled;
nh = enabled;
steam = enabled;
};
services = {
ly = enabled;
};