feat(home): Create top-level wayland/xorg options
This commit is contained in:
parent
ae6f20fe82
commit
3ae42bf5da
5 changed files with 30 additions and 6 deletions
|
@ -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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -36,6 +36,8 @@ in {
|
|||
];
|
||||
|
||||
marleyos = {
|
||||
wayland.enable = true;
|
||||
|
||||
programs = {
|
||||
hyprlock.enable = true;
|
||||
waybar.enable = true;
|
||||
|
|
|
@ -11,6 +11,8 @@ in {
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos = {
|
||||
wayland.enable = true;
|
||||
|
||||
programs = {
|
||||
waybar.enable = true;
|
||||
wlogout.enable = true;
|
||||
|
|
13
modules/home/xorg/default.nix
Normal file
13
modules/home/xorg/default.nix
Normal 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 {
|
||||
#
|
||||
# };
|
||||
}
|
|
@ -11,6 +11,7 @@ in {
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
marleyos = {
|
||||
xorg.enable = true;
|
||||
programs.rofi.enable = true;
|
||||
services = {
|
||||
dunst.enable = true;
|
||||
|
|
Loading…
Reference in a new issue