mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-13 06:23:18 -05:00
10 lines
236 B
Nix
10 lines
236 B
Nix
|
|
{ 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
|
||
|
|
'')
|
||
|
|
]
|
||
|
|
}
|