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
|
||||
# TODO: uncomment when swaylock is figured out
|
||||
# ./wlogout
|
||||
./xwayland-satellite.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
|
@ -8,7 +8,7 @@
|
|||
in {
|
||||
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; [
|
||||
xwayland-satellite
|
||||
];
|
|
@ -29,7 +29,7 @@ in {
|
|||
# TODO: enable once swaylock is figured out
|
||||
# wlogout = enabled;
|
||||
fuzzel = enabled;
|
||||
# xwayland-satellite = enabled;
|
||||
xwayland-satellite = enabled;
|
||||
};
|
||||
services = {
|
||||
# swaybg = enabled;
|
||||
|
|
Loading…
Reference in a new issue