feat: add uwsm

This commit is contained in:
Nydragon 2024-12-11 18:14:49 +01:00
parent 8d9697d309
commit 9894be9b65
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 24 additions and 4 deletions

View file

@ -73,6 +73,7 @@
};
programs = {
uwsm.enable = true;
dconf.enable = true;
fish.enable = true;
firefox.enable = true;

View file

@ -1 +1,10 @@
{ lib, config, ... }: lib.mkIf config.programs.hyprland.enable { }
{ lib, config, ... }:
lib.mkIf config.programs.hyprland.enable {
programs.uwsm = {
waylandCompositors.hyprland = {
prettyName = "Hyprland";
comment = "Hyprland compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/Hyprland";
};
};
}

View file

@ -1,7 +1,17 @@
{ config, lib, ... }:
lib.mkIf config.programs.sway.enable {
programs.sway = {
programs = {
uwsm = {
waylandCompositors.sway = {
prettyName = "Sway";
comment = "Sway compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/sway";
};
};
sway = {
wrapperFeatures.gtk = true;
extraPackages = [ ];
};
};
}