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