11 lines
302 B
Nix
11 lines
302 B
Nix
{ 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;
|
|
}
|