virchau13

Results 11 issues of virchau13

This adds an option to `bspc` which prints the socket path to `bspwm` and immediately exits. The reason for this change is twofold: - It allows for a convenient way...

This moves the code for setting up `fpath` for zsh's autocomplete from /etc/zshrc to /etc/zshenv, which keeps compatibility with NixOS. I got very confused why my setup had autocomplete on...

This PR makes sure that the hint that the installer gives you when `/run` doesn't exist actually outputs a literal tab to `/etc/synthetic.conf`. The code before appended the literal string`run\tprivate/var/run`...

I formatted my disk and installed Monterey. I tried to bootstrap my dotfiles via the following process: - do a multi-user install of Nix - enter a `nix-shell -p git`...

I just had to do a whole lot of asm debugging to figure out why MangoHud was segfaulting when invoking it on Wezterm on NixOS (it was because the OpenGL...

I have a whole bunch of secrets stored in the `/run/secrets/scripts` directory. I want to put the directory `/run/secrets/scripts` into a non-root user's $PATH, but since that user doesn't have...

This removes the manual specification of `cargoSha256`, and replaces it by specifying [`cargoLock.lockFile`](https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/rust.section.md#importing-a-cargolock-file-importing-a-cargolock-file) instead. This removes the need to manually update `cargoSha256`; Cargo.lock can be updated without fear of the...

An attempt at solving #226. Adds `.set_sign()` and `Mul`/`MulAssign` for `BigInt`. The current behaviour is that `.set_sign(s)` sets the sign if `s` is either `Plus` or `Minus`. If `s` is...

Currently, the only way to directly change the sign of a `BigInt` is to use`.into_parts()` and then `BigInt::from_biguint()`. It would be more convenient if we could directly set the sign,...

**Is your feature request related to a problem? Please describe.** Being able to get a subset of the files for very big repositories is often necessary. For example, I had...

improvement