feat(nixos): Categorize programs; create bundle
This commit is contained in:
parent
69e101209b
commit
c1c867b824
9 changed files with 67 additions and 13 deletions
28
modules/nixos/bundles/desktop/default.nix
Normal file
28
modules/nixos/bundles/desktop/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -11,6 +11,8 @@ in {
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos.programs = {
|
||||
fish = enabled;
|
||||
nh = enabled;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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 = {
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue