Richard Brežák
Richard Brežák
# Problem When I declare my hydra in use-package, ```elisp (use-package hydra :ensure t :config (defhydra magic_rb/hydra-base (:color red :body-pre (setq hydra-stack nil)) ("s" treemacs-switch-workspace) ... ("m" magit)) (defhydra magic_rb/hydra-rust...
Some options are commonly shared between different services. For example: ```nix { # ... envsubst = { enable = mkEnableOption "Enable envsubst"; variables = mkOption { type = with types;...
PostreSQL 15 apparently changed stuff with authentication, see [stackoverflow](https://stackoverflow.com/a/74111630). The module will need adapting, but to be honest I don't like it's current state that much anyway...
[snooze](https://github.com/leahneukirchen/snooze) looks like a nice runit centric cron replacement which goes hand in hand with the whole runit "philosophy".
Due to the requirement of being tiny, having a global always available shell is not ideal. A suitable alternative might be making sure that when `/etc/profile` is loaded by a...
Currently the only way to learn about the module options of NixNG is to dig through the module files. This is unacceptable, as new users who are not NixNG or...
Utilizing Nickel for runtime configuration is an alternative to template style configuration, like go-template, django or embedded [EEx](https://elixirschool.com/en/lessons/misc/eex). This would allow us to use typed schemas for configuration files, while...
with a kame script ```kaam #!/bin/kaem -f echo $@ ``` the output will be `-- arguments...` if called with `./script -- arguments...`, I'd expect the output to be just `echo...
Have you thought about adding a trackpoint? Because in my opinion what you currently have looks really good and I wish to make one someday, though if it had a...
I made a little hacky hack for the normal inbuilt preview code which slices the images otherwise the scrolling is really jumpy. Are you planning something similar, I'll come back...