nixos/home/scripts/default.nix
Torjus Håkestad 37b77e4880
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m29s
Periodic flake update / flake-update (push) Successful in 2m19s
Add noita-helper script
2025-05-04 11:25:32 +02:00

20 lines
392 B
Nix

{ pkgs, config, ... }:
{
imports = [
./lockhelper.nix
./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;
};
}