nixos-config/modules/home/sway-launcher-desktop.nix

31 lines
607 B
Nix
Raw Permalink Normal View History

2025-04-06 16:18:55 -04:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
sway-launcher-desktop
wl-clipboard
];
2025-04-07 12:31:09 -04:00
home.file.".local/bin/sway-launcher-rbw" = {
executable = true;
text = ''
#!/usr/bin/env fish
PROVIDERS_FILE=providers/rbw.conf sway-launcher-desktop
'';
};
home.file.".local/bin/sway-launcher-niri-windows" = {
executable = true;
text = ''
#!/usr/bin/env fish
HIST_FILE="" PROVIDERS_FILE=providers/niri-windows.conf sway-launcher-desktop
'';
};
xdg.configFile."sway-launcher-desktop/providers" = {
source = ./sway-launcher-providers;
recursive = true;
};
2025-04-06 16:18:55 -04:00
}