aaaaaaaaaaaaa

This commit is contained in:
41666 2025-03-12 18:15:38 -07:00
parent d9c5650091
commit e7253ef4a4
13 changed files with 161 additions and 198 deletions

10
pkgs/mspaint/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: let
wrapped = pkgs.writeShellScriptBin "mspaint" ''
${pkgs.wine}/bin/wine ${./mspaint.exe}
'';
in pkgs.makeDesktopItem {
name = "mspaint";
desktopName = "mspaint";
type = "Application";
exec = "${wrapped}/bin/mspaint";
}