nixos/home/scripts/default.nix
Torjus Håkestad 8d419de159
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m47s
Periodic flake update / flake-update (push) Successful in 2m10s
Rework lockhelper for gunter
2025-06-10 19:21:22 +02:00

19 lines
371 B
Nix

{ pkgs, config, ... }:
{
imports = [
./noita-helper.nix
];
home.file.".local/bin/hl-no-opacity" = {
source = ./hl-no-opacity.sh;
executable = true;
};
home.file.".local/bin/rofi-launcher" = {
source = ./rofi-launcher.sh;
executable = true;
};
home.file.".local/bin/randomwp" = {
source = ./randomwp.sh;
executable = true;
};
}