8 lines
131 B
Nix
8 lines
131 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
home.file.".local/bin/rofi-launcher" = {
|
|
source = ./rofi-launcher.sh;
|
|
executable = true;
|
|
};
|
|
}
|