GenericNerdyUsername

Results 5 issues of GenericNerdyUsername

I'm trying to migrate a package repository away from using [OCE](https://github.com/tpaviot/oce) as it is no longer maintained, but compiling with OCC and `-DWITH_ELMERGUI:BOOLEAN=TRUE` on commit `d1d4983` causes the compile to...

Ive noticed that a lot of programs expect debuginfo to be in `/usr/lib/debug/.build-id/...`, would a declarative symlink for this be possible?

`/etc/nixos#nixosConfigurations.nixos.config.fileSystems` [before](https://gist.github.com/GenericNerdyUsername/5114d9bb200f64acba3963dfb5acd841) and [after](https://gist.github.com/GenericNerdyUsername/9338a8ae4843ebaefe321fc941856a4d) the commit. My `disk-config.nix`: ```nix { ... }: { disko.devices = { disk = { nvme = { type = "disk"; device = "/dev/disk/by-id/nvme-WDS250G3X0C-00SJG0_191334805406"; content =...

The code snippet ```rs // convert from a color_eyre EyreHook to a eyre ErrorHook let eyre_hook = eyre_hook.into_eyre_hook(); eyre::set_hook(Box::new( move |error: &(dyn std::error::Error + 'static)| { tui::restore().unwrap(); eyre_hook(error) }, ))?;...