nixos/user/scripts/default.nix

8 lines
131 B
Nix
Raw Normal View History

2024-12-04 16:27:03 +01:00
{ pkgs, config, ... }:
{
2024-03-18 12:58:34 +01:00
home.file.".local/bin/rofi-launcher" = {
source = ./rofi-launcher.sh;
executable = true;
};
}