This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is mostly right on a surface level. | |
- https://github.com/NixOS/rfcs/pull/98 left some initial scars in the community, many of the players are still involved with the current events. | |
> and want us all to care that people behaved in a perfectly predictable manner and nothing actually bad happened to you. | |
I didn't fully expect that level of personal attacks. And this line of logic is similar to victim blaming. | |
In a lot of ways, my behavior was a continuation of how I felt 3 years ago. | |
> I started using Nix because I thought it was an interesting and exciting technology; and the ability to leverage Nix will just increase over time as the NixOS ecosystem grows and matures. | |
> This is still why I continue to be a part of the community: the technology and expertise. | |
> Hacking and using nixpkgs is still exciting to me; even after years of use. I still learn new things, and nixpkgs is essentially an enormous body of expert knowledge. | |
> What’s not fun are discussions like RFC 98 101, in which it seems that an age |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Information: | |
Manufacturer: ASUSTeK COMPUTER INC. | |
Model: ROG STRIX X570-F GAMING | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: AuthenticAMD | |
CPU Brand: AMD Ryzen 9 3900X 12-Core Processor | |
CPU Family: 0x17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parent cvar in client.dll not allowed (sv_bumpmine_detonate_delay) | |
Parent cvar in client.dll not allowed (sv_bumpmine_arm_delay) | |
Parent cvar in client.dll not allowed (sv_breachcharge_arm_delay) | |
Parent cvar in client.dll not allowed (sv_breachcharge_fuse_max) | |
Parent cvar in client.dll not allowed (sv_breachcharge_fuse_min) | |
Parent cvar in client.dll not allowed (sv_breachcharge_delay_max) | |
Parent cvar in client.dll not allowed (sv_breachcharge_delay_min) | |
Parent cvar in client.dll not allowed (sv_breachcharge_distance_max) | |
Parent cvar in client.dll not allowed (sv_breachcharge_distance_min) | |
Parent cvar in client.dll not allowed (weapon_max_before_cleanup) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ nix show-derivation /nix/store/880m2s76cxsg2lg6hrlnfn0khazd1xz1-hello-2.12.drv | |
{ | |
"/nix/store/880m2s76cxsg2lg6hrlnfn0khazd1xz1-hello-2.12.drv": { | |
"outputs": { | |
"out": { | |
"path": "/nix/store/2a1m8qmdafvmshm93236q3sz3rhrjd9f-hello-2.12" | |
} | |
}, | |
"inputSrcs": [ | |
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[13:32:50] jon@jon-desktop /home/jon/projects/nixpkgs (master) | |
$ nix-instantiate -A hello | |
warning: you did not specify '--add-root'; the result might be removed by the garbage collector | |
/nix/store/880m2s76cxsg2lg6hrlnfn0khazd1xz1-hello-2.12.drv | |
[13:32:57] jon@jon-desktop /home/jon/projects/nixpkgs (master) | |
$ nix-store -q --tree /nix/store/880m2s76cxsg2lg6hrlnfn0khazd1xz1-hello-2.12.drv | |
/nix/store/880m2s76cxsg2lg6hrlnfn0khazd1xz1-hello-2.12.drv | |
├───/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh | |
├───/nix/store/4g2cj2fjfpwqivqgy0dqcnvz2fwra132-bash-5.1-p12.drv | |
│ ├───/nix/store/0zhkga32apid60mm7nh92z2970im5837-bootstrap-tools.drv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/nix/store/2kh3c4v2vf6d6xg6c9n8zvfpwf3zzwca-bash-5.1-p12/bin/bash | |
if [ -f /host/etc/NIXOS ]; then # Check only useful on NixOS | |
/nix/store/z3qg0z1699cqqv1f1j3z8rz8spa7whqq-glxinfo-8.4.0/bin/glxinfo >/dev/null 2>&1 | |
# If there was an error running glxinfo, we know something is wrong with the configuration | |
if [ $? -ne 0 ]; then | |
cat <<EOF > /dev/stderr | |
** | |
WARNING: Steam is not set up. Add the following options to /etc/nixos/configuration.nix | |
and then run \`sudo nixos-rebuild switch\`: | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/nix/store/2kh3c4v2vf6d6xg6c9n8zvfpwf3zzwca-bash-5.1-p12/bin/bash | |
source /etc/profile | |
cat > /etc/ld.so.conf <<EOF | |
/lib | |
/lib/x86_64-linux-gnu | |
/lib64 | |
/usr/lib | |
/usr/lib/x86_64-linux-gnu | |
/usr/lib64 | |
/lib/i386-linux-gnu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/nix/store/2kh3c4v2vf6d6xg6c9n8zvfpwf3zzwca-bash-5.1-p12/bin/bash | |
blacklist=(/nix /dev /proc /etc) | |
ro_mounts=() | |
symlinks=() | |
for i in /nix/store/94lx3q3xcb259dajk07faj5hpg8rs8jq-steam-fhs/*; do | |
path="/${i##*/}" | |
if [[ $path == '/etc' ]]; then | |
: | |
elif [[ -L $i ]]; then | |
symlinks+=(--symlink "$(/nix/store/vizjhz04x6xl57x2vrpqa52j8q6rkjfh-coreutils-9.0/bin/readlink "$i")" "$path") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib | |
, stdenv | |
, fetchFromGitHub | |
, cmake | |
, mbedtls | |
}: | |
stdenv.mkDerivation rec { | |
pname = "lib60870"; | |
version = "2.3.1"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Evals report | |
*Report built at 2021-05-18 18:21:58 UTC* | |
Built for evals: | |
* [1671097](https://hydra.nixos.org/eval/1671097) | |
* * * |
NewerOlder