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

12 lines
302 B
Nix
Raw Normal View History

2025-04-06 16:18:55 -04:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
sway-launcher-desktop
wl-clipboard
];
xdg.configFile."sway-launcher-desktop/providers".source = ./sway-launcher-providers;
home.file.".local/bin/sway-launcher-rbw".source = ./sway-launcher-providers/sway-launcher-rbw.fish;
}