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}"; }; { type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; };
linuxApps = pkgs: [ linuxApps = pkgs: [
(makeApp "basilisk" null) (makeApp pkgs "basilisk" null)
(makeApp "isabelle" null) (makeApp pkgs "isabelle" null)
(makeApp "firefox-esr-alias" "firefox-esr") (makeApp pkgs "firefox-esr-alias" "firefox-esr")
(makeApp "inkscape-xwayland" "inkscape") (makeApp pkgs "inkscape-xwayland" "inkscape")
]; ];

View file

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