about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* WIP: games/foss/ultrastar-play ultrastar-playProfpatsch2024-03-243-1/+121
|
* pkgs/profpatsch/nman: verbose log all found manpages on failureProfpatsch2024-03-041-18/+45
|
* pkgs/profpatsch/nman: really enumerate (all) manpagesProfpatsch2024-03-041-29/+39
| | | | | | We enumerate every single manpage, then we only take the first manpage that is in our section or just the first manpage that is named correctly.
* pkgs/profpatsch/nman: rewrite directory iteration to more imperativeProfpatsch2024-03-031-19/+19
| | | | | This is gonna make it a lot easier to enumerate the manpages as well. Plus the code gets somewhat easier to read in my opinion.
* pkgs/profpatsch/nman: don’t return the full pathProfpatsch2024-03-031-15/+13
| | | | | We can construct the path of a manpage from it’s metadata alone (given a derivation output path).
* pkgs/profpatsch/nman: move checking man-prefix into enumerateProfpatsch2024-03-031-34/+43
| | | | | We can already validate these directories early, returning just a struct with the plain section name and path to section.
* pkgs/profpatsch/nman: always enumerate all manpagesProfpatsch2024-03-031-17/+19
| | | | | First step towards getting some info about which manpages are indeed available if we don’t find any.
* pkgs/profpatsch/nman: separate drv building from manpage checkProfpatsch2024-03-031-33/+47
|
* pkgs/profpatsch/nman: start returning more info from buildProfpatsch2024-03-031-6/+12
|
* pkgs/profpatsch/nman: initial debug logging & add "doc"Profpatsch2024-03-031-6/+60
| | | | | For some reason the doc output was missing from the list, but we want to sort it kinda high? At least over "bin" and such!
* pkgs/profpatsch/nman: run `rustfmt`Profpatsch2024-03-032-136/+194
|
* pkgs/profpatsch/nman: add a `--verbose` flagProfpatsch2024-03-032-25/+44
| | | | And only print debug stuff iff we enabled it.
* pkgs/profpatsch/nman: put functions into struct contextProfpatsch2024-03-031-153/+160
| | | | so that we can add a global debug flag
* pkgs/profpatsch/nman: print all command calls to stderrProfpatsch2024-03-031-14/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently still unconditionally. The commands are printed in a syntax that can be directly copied and executed in bash. The pretty-printing code is transformed form this Haskell function: ```haskell -- | Simple escaping for bash words. If they contain anything that’s not ascii chars -- and a bunch of often-used special characters, put the word in single quotes. simpleBashEscape :: Text -> Text simpleBashEscape t = do case Text.find (not . isSimple) t of Just _ -> escapeSingleQuote t Nothing -> t where -- any word that is just ascii characters is simple (no spaces or control characters) -- or contains a few often-used characters like - or . isSimple c = Char.isAsciiLower c || Char.isAsciiUpper c || Char.isDigit c -- These are benign, bash will not interpret them as special characters. || List.elem c ['-', '.', ':', '/'] -- Put the word in single quotes -- If there is a single quote in the word, -- close the single quoted word, add a single quote, open the word again escapeSingleQuote t' = "'" <> Text.replace "'" "'\\''" t' <> "'" ```
* pkgs/profpatsch/nman: order functions top-to-bottomProfpatsch2024-03-031-81/+84
|
* pkgs/profpatsch/nman: move main to topProfpatsch2024-03-031-68/+70
|
* pkgs/profpatsch/nman: inline dispatch_actionProfpatsch2024-03-031-38/+39
|
* pkgs/{profpatsch/nman,sternenseemann/rust/temp}: fix rust warningsProfpatsch2024-03-032-12/+11
|
* pkgs/{profpatsch/nman,sternenseemann/rust/temp}: add stub Cargo.tomlProfpatsch2024-03-034-0/+24
| | | | | | | | | These are for local development, otherwise rust language server does not work out of the box. We might want to move the `temp` crate into its own dir, because cargo only allows one library per Cargo.toml, but right now I did the minimal setup to make it work.
* profiles/packages: add shellhardendevhell2024-03-021-0/+1
|
* profiles/packages: jq -> jqldevhell2024-03-021-1/+1
|
* profiles/packages: add fenddevhell2024-03-021-0/+1
|
* machines/herja: add mem_sleep_defaultdevhell2024-03-021-1/+1
| | | | As per NixOS's hardware library, this might be a good addition.
* machines/devhell/*: disable syncthingdevhell2024-02-255-5/+5
| | | | I haven't been using it for a while.
* profiles/packages: remove polybardevhell2024-02-251-7/+0
| | | | | Wayland has been nothing but stable and fun to use, no need to keep legacy crap around now.
* machines/herja: set system.stateVersiondevhell2024-02-251-0/+2
|
* profile: Use /run instead of /var/run for shellaszlig2024-02-241-1/+1
| | | | | | | | | | | | | | The /var/run directory no longer is the canonical location for what is now /run and /var/run is also not in /etc/shells, so let's switch to /run instead. From hier(7): /run This directory contains information which describes the system since it was booted. Once this purpose was served by /var/run and programs may continue to use it. Signed-off-by: aszlig <aszlig@nix.build>
* machines/gunnr: add rwpspreaddevhell2024-02-241-0/+1
| | | | | This tool should allow spanning wide wallpapers on multi-monitor wayland setups without having to laboriously cut them up to fit the screens.
* profiles/packages: fix typodevhell2024-02-231-1/+1
|
* profiles/packages: imv -> oculantedevhell2024-02-221-1/+1
| | | | `oculante` seems awesome.
* machines/gunnr: add rtl88xxau-aircrack fixdevhell2024-02-201-1/+14
| | | | | | Without this the module doesn't build on kernel >6.7. Development seems to be slow upstream anyway, so this seems the most straight forward way of fixing it for now.
* machines/gunnr: remove boot.grub.versiondevhell2024-02-201-1/+0
| | | | This is not needed anymore.
* modules/profpatsch/weechat: add stop actionProfpatsch2024-02-141-0/+7
|
* machines/profpatsch/website: ensmallen pubkeyProfpatsch2024-02-141-842/+585
|
* machines/profpatsch/website: mastodon <link>Profpatsch2024-02-141-0/+1
|
* machines/profpatsch/website: more talkiesProfpatsch2024-02-141-1/+5
|
* machines/profpatsch/legosi: serve /mlpProfpatsch2024-02-141-1/+3
| | | | | Somebody wanted a very old MLP file I posted years ago, restores the public URL.
* machines/profpatsch: shiki hardware config & stateVersionProfpatsch2024-02-141-0/+15
|
* machines/profpatsch: hashedPasswordFileProfpatsch2024-02-141-1/+1
|
* machines/profpatsch: add myself to adbusers groupProfpatsch2024-02-141-0/+1
|
* machines/profpatsch: move around xmonadProfpatsch2024-02-141-8/+8
|
* machines/profpatsch: enable fwupdProfpatsch2024-02-141-0/+2
|
* machines/Profpatsch: nopev6Profpatsch2024-02-141-0/+2
|
* profiles/packages: Remove some low-use programsdevhell2024-02-021-7/+0
| | | | | Some of these I don't use at all anymore, and others I use too infequently to be built all the time.
* firefox: Update Tridactyl to version 1.24.0aszlig2024-02-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New features: * A new :reader mode has been added which Tridactyl binds can run on. If you prefer the old mode, it is accessible with :reader --old. We've left gr bound to the old mode for now but you can update it with :bind gr reader * With :set tabsort mru, tab IDs within Tridactyl are now determined by recency of use almost everywhere. This means, e.g. that you can use 2gt to switch to the second most recently used tab (so identical to <C-^>), 3gt to the third most recently used tab, etc. * yq bind added to display current URL as a QR code, with q bind in visual mode. See :text2qr for details * :set keyboardlayoutforce true will now force Tridactyl to use, by default, the US keyboard layout for keybinds, even if you're using a different layout. Useful if you use multiple layouts but don't want Tridactyl binds to move, or if you use a layout such as a Cyrillic one where the default binds are difficult to use. Change the forced layout with :set keyboardlayoutbase * Experimental support for opening arbitrary pages in the sidebar has been added. See :help sidebartoggle and :help sidebaropen for more details * :autocmd and related commands now have completions * :open and related commands now have completions for searchurls and previous searches * Quality of life improvements for tab groups * -x flag added to :hint to exclude CSS selectors from hints * With the command line open, <C-o>t opens a new tab in the background for the selected completion - especially useful with :back completions * :hint -C [selectors] added for custom hint modes while including the default selectors * ;gd rapid hint mode with discarded tabs added * :undo now has fuzzy matching * :source can now read from the command line and the clipboard with --strings and --clipboard * :tab{grab,push} now respect tabopenpos Bug fixes: * :find will now find start from the current viewport * Comments now work in multiline commands in RC files * :editor now works on Gradio apps (please spare me when AI takes over the world) * :winmerge completions are more readable with many windows * :urlincrement now operates on the decoded URI so e.g. %20 doesn't become %21 * ;m and ;M for Google reverse-image search now work again * The midnight theme no longer has a white background in FF102+ * Container colours fixed for FF108+ * gi no longer goes to the start of the search box on Google * modeindicator border is now configurable * Unbindable default binds should no longer be possible * Config should no longer reset when interacting with help page Miscellaneous: * :jsua command added to preserve "user action" intent when using browser binds, needed for triggering certain Web Extension APIs such as browser.sidebarAction.open(). See :help jsua for more information * tri.hinting_content.hintElements function added for advanced usage in :js - see the source for documentation * Groundwork for multi-browser support added * All tests now run using GitHub actions * Docs are now built and hosted on our website * Native messenger now supports Arm-based Macs with :native version at least 0.4.0 * Native messenger 0.4.1 checks %XDG_CONFIG_HOME% on Windows * when_feature.sh [feature] helper script added to repo to find the earliest possible version a feature appeared in Tridactyl Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Update Stylus to version 1.5.45aszlig2024-02-021-2/+2
| | | | | | | | | | | | A lot has changed between 1.5.38, but mostly around the integrated editor (which I don't use) and circumvention of content security policies on certain sites. I might want to drop this plugin at some point, since it does a whole lot more than what I personally want (which is simply: use a different CSS for a *very* small and selected amount of sites). Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Update ff2mpv to version 5.1.0aszlig2024-02-021-2/+2
| | | | | | | | | | | | Most changes are about installing the native messaging app and packaging on various distributions and OS, additionally it also tries to support more browsers. In addition to that, there is now a way to set mpv arguments via the plugin's new options page. We however want to set this via Nix, so I'm completely ignoring that feature and didn't include it in our ff2mpv.py. Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Enable Global Privacy Controlaszlig2024-02-021-0/+1
| | | | | | | | | | | | | | | | | This was introduced in Firefox 120.0 and essentially implements the following specification: https://privacycg.github.io/gpc-spec/ Similar to Do-Not-Track, it implements a header (Sec-GPC) that expresses the persons preference to the site of whether the site may sell/share the browsers interaction. Since Do-Not-Track pretty much is ignored on most sites that formerly adhered to it, I expect a similar fate for GPC, but maybe this time things work out differently (crossing fingers). Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Disable extension updatesaszlig2024-02-021-0/+1
| | | | | | | We're managing extensions via Nix, so there is no need to check whether extension updates are available. Signed-off-by: aszlig <aszlig@nix.build>
* profiles/packages: neofetch -> fastfetchdevhell2024-01-281-1/+1
| | | | Just seems more detailed than neofetch.