Trying to add a script.

This commit is contained in:
Annika Merris 2024-09-17 12:48:52 -04:00
parent d72827957d
commit b46a589d06
2 changed files with 11 additions and 0 deletions

View file

@ -15,6 +15,7 @@ inputs.nixpkgs.lib.nixosSystem {
./hardware-configuration.nix
./audio.nix
./netbird.nix
./wowup.nix
../../modules/common
../../modules/nixos
{

10
hosts/kim/wowup.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
home.packages = [
(pkgs.writeShellScriptBin "WoWUp.sh" ''
#!/home/${home.username}/.nix-profile/bin/bash
appimage-run /home/${home.username}/win/bin/WowUp-CF-2.20.0.AppImage
'')
]
}