feat(home): Create top-level wayland/xorg options

This commit is contained in:
punkfairie 2025-02-28 20:28:44 -08:00
parent ae6f20fe82
commit 3ae42bf5da
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
5 changed files with 30 additions and 6 deletions

View file

@ -2,12 +2,18 @@
config,
lib,
...
}: {
# Fix the "tray.target not found" error.
systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
}: let
cfg = config.marleyos.wayland;
in {
options.marleyos.wayland.enable = lib.mkEnableOption "wayland";
config = lib.mkIf cfg.enable {
# Fix the "tray.target not found" error.
systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
};
};
};
}

View file

@ -36,6 +36,8 @@ in {
];
marleyos = {
wayland.enable = true;
programs = {
hyprlock.enable = true;
waybar.enable = true;

View file

@ -11,6 +11,8 @@ in {
config = lib.mkIf cfg.enable {
marleyos = {
wayland.enable = true;
programs = {
waybar.enable = true;
wlogout.enable = true;

View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: let
cfg = config.marleyos.xorg;
in {
options.marleyos.xorg.enable = lib.mkEnableOption "xorg";
# config = lib.mkIf cfg.enable {
#
# };
}

View file

@ -11,6 +11,7 @@ in {
config = lib.mkIf cfg.enable {
marleyos = {
xorg.enable = true;
programs.rofi.enable = true;
services = {
dunst.enable = true;