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,7 +2,12 @@
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: 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.
|
# Fix the "tray.target not found" error.
|
||||||
systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) {
|
systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) {
|
||||||
Unit = {
|
Unit = {
|
||||||
|
@ -10,4 +15,5 @@
|
||||||
Requires = ["graphical-session-pre.target"];
|
Requires = ["graphical-session-pre.target"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,8 @@ in {
|
||||||
];
|
];
|
||||||
|
|
||||||
marleyos = {
|
marleyos = {
|
||||||
|
wayland.enable = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
hyprlock.enable = true;
|
hyprlock.enable = true;
|
||||||
waybar.enable = true;
|
waybar.enable = true;
|
||||||
|
|
|
@ -11,6 +11,8 @@ in {
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
marleyos = {
|
marleyos = {
|
||||||
|
wayland.enable = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
waybar.enable = true;
|
waybar.enable = true;
|
||||||
wlogout.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 {
|
config = lib.mkIf cfg.enable {
|
||||||
marleyos = {
|
marleyos = {
|
||||||
|
xorg.enable = true;
|
||||||
programs.rofi.enable = true;
|
programs.rofi.enable = true;
|
||||||
services = {
|
services = {
|
||||||
dunst.enable = true;
|
dunst.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue