feat: xwayland-satellite
This commit is contained in:
parent
73aa0bdcca
commit
d19b849577
3 changed files with 4 additions and 3 deletions
|
@ -5,5 +5,6 @@
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
# TODO: uncomment when swaylock is figured out
|
# TODO: uncomment when swaylock is figured out
|
||||||
# ./wlogout
|
# ./wlogout
|
||||||
|
./xwayland-satellite.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
lib,
|
|
||||||
config,
|
config,
|
||||||
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
in {
|
in {
|
||||||
options.marleyos.programs.xwayland-satellite.enable = lib.mkEnableOption "xwayland-satellite";
|
options.marleyos.programs.xwayland-satellite.enable = lib.mkEnableOption "xwayland-satellite";
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
xwayland-satellite
|
xwayland-satellite
|
||||||
];
|
];
|
|
@ -29,7 +29,7 @@ in {
|
||||||
# TODO: enable once swaylock is figured out
|
# TODO: enable once swaylock is figured out
|
||||||
# wlogout = enabled;
|
# wlogout = enabled;
|
||||||
fuzzel = enabled;
|
fuzzel = enabled;
|
||||||
# xwayland-satellite = enabled;
|
xwayland-satellite = enabled;
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
# swaybg = enabled;
|
# swaybg = enabled;
|
||||||
|
|
Loading…
Reference in a new issue