Compare commits

...

2 commits

Author SHA1 Message Date
f7459348f4
fix: fuzzel prompt 2024-12-11 18:15:06 +01:00
9894be9b65
feat: add uwsm 2024-12-11 18:14:49 +01:00
7 changed files with 28 additions and 15 deletions

View file

@ -10,7 +10,7 @@
line-height = 30; line-height = 30;
fields = "name,generic,comment"; fields = "name,generic,comment";
terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal; terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal;
prompt = " "; prompt = ''" "'';
layer = "overlay"; layer = "overlay";
}; };
colors = { colors = {

View file

@ -29,11 +29,7 @@ mkIf osConfig.programs.hyprland.enable {
exec-once = [ exec-once = [
"${config.services.kdeconnect.package}/bin/kdeconnect-indicator" "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window" "${pkgs.keepassxc}/bin/keepassxc"
# keepassxc ignores themeing and doesnt show up in system tray otherwise
# Dirty solution but hey
"sleep 3 && ${pkgs.keepassxc}/bin/keepassxc"
(lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle") (lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle")
]; ];

View file

@ -73,6 +73,7 @@
}; };
programs = { programs = {
uwsm.enable = true;
dconf.enable = true; dconf.enable = true;
fish.enable = true; fish.enable = true;
firefox.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, ... }: { config, lib, ... }:
lib.mkIf config.programs.sway.enable { lib.mkIf config.programs.sway.enable {
programs.sway = {
wrapperFeatures.gtk = true; programs = {
extraPackages = [ ]; uwsm = {
waylandCompositors.sway = {
prettyName = "Sway";
comment = "Sway compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/sway";
};
};
sway = {
wrapperFeatures.gtk = true;
extraPackages = [ ];
};
}; };
} }

View file

@ -26,10 +26,7 @@ in
pkgs.brightnessctl pkgs.brightnessctl
pkgs.networkmanager pkgs.networkmanager
]; ];
wantedBy = [ wantedBy = [ "graphical-session.target" ];
"multi-user.target"
"graphical-session.target"
];
partOf = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ];
after = [ "graphical-session-pre.target" ]; after = [ "graphical-session-pre.target" ];

View file

@ -86,7 +86,7 @@ in
description = "tailscale system tray"; description = "tailscale system tray";
wantedBy = [ "graphical-session.target" ]; wantedBy = [ "graphical-session.target" ];
wants = [ "graphical-session.target" ]; wants = [ "graphical-session.target" ];
after = [ "graphical-session.target" ]; after = [ "graphical-session-pre.target" ];
path = [ pkgs.polkit ]; path = [ pkgs.polkit ];
serviceConfig = { serviceConfig = {
Type = "simple"; Type = "simple";