Compare commits

..

2 commits

Author SHA1 Message Date
c35a67f490 oops 2025-04-02 19:02:01 +02:00
4a9e524f66 add silly little scripts 2025-04-02 19:01:56 +02:00
2 changed files with 6 additions and 6 deletions

View file

@ -23,14 +23,14 @@
];
makeApp = name: exe:
makeApp = pkgs: name: exe:
{ type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; };
linuxApps = pkgs: [
(makeApp "basilisk" null)
(makeApp "isabelle" null)
(makeApp "firefox-esr-alias" "firefox-esr")
(makeApp "inkscape-xwayland" "inkscape")
(makeApp pkgs "basilisk" null)
(makeApp pkgs "isabelle" null)
(makeApp pkgs "firefox-esr-alias" "firefox-esr")
(makeApp pkgs "inkscape-xwayland" "inkscape")
];

View file

@ -40,7 +40,7 @@ in
`gallery.niss.website`. exceedingly unlikely to be useful to anyone
else.
- `charFilters`: `little` for making text ˡ ʰˢ and `wide` for
text  
text  .
- find-parent:
`find-parent file` looks for `file` in the current directory or
any of its ancestors, and prints the path of the file found, if any.