name | count |
---|---|
aarch64-linux python3.8-pytest-5.1.0 |
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
# configuration.nix for personal computer | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
]; |
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
# configuration.nix for work hyper-v instance | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
]; |
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
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
let | |
myvim = pkgs.vim_configurable.customize { | |
name = "vim"; | |
vimrcConfig.customRC = '' |
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
{ config, pkgs, ... }: | |
{ | |
# Let Home Manager install and manage itself. | |
programs.home-manager.enable = true; | |
home.packages = with pkgs; [ | |
exa | |
fd | |
cabal-install |
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 2019-11-28 07:33:10 UTC* | |
Built for evals: | |
* [1556750](https://hydra.nixos.org/eval/1556750) | |
* * * |
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
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
let | |
wallpaper = builtins.fetchurl { | |
url = "https://wallpaperplay.com/walls/full/5/3/0/10478.jpg"; | |
sha256 = "0b73fjimxw0dd58w8wvmlyqld01zdpczz5ih1bl7c4s5jh775x7q"; |
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
friture 0.37 0.38 https://pypi.org/project/friture/ | |
cozy 0.6.7 1.0 https://pypi.org/project/cozy/ | |
rofi-mpd 2.0.1 2.1.0 https://pypi.org/project/rofi-mpd/ | |
menumaker 0.99.11 1.4.1 https://pypi.org/project/menumaker/ | |
guake 3.6.3 3.7.0 https://pypi.org/project/guake/ | |
buku 4.2.2 4.3 https://pypi.org/project/buku/ | |
etesync-dav 0.15.0 0.16.0 https://pypi.org/project/etesync-dav/ | |
kitty 0.17.2 1.2.0 https://pypi.org/project/kitty/ | |
hovercraft 2.6 2.7 https://pypi.org/project/hovercraft/ | |
jrnl 1.9.8 2.3.1 https://pypi.org/project/jrnl/ |
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
$ nrp 77714 | |
$ git -c fetch.prune=false fetch --force https://github.com/NixOS/nixpkgs master:refs/nixpkgs-review/0 pull/77714/head:refs/nixpkgs-review/1 | |
remote: Enumerating objects: 359, done. | |
remote: Counting objects: 100% (359/359), done. | |
remote: Compressing objects: 100% (3/3), done. | |
remote: Total 544 (delta 356), reused 356 (delta 356), pack-reused 185 | |
Receiving objects: 100% (544/544), 547.06 KiB | 7.81 MiB/s, done. | |
Resolving deltas: 100% (378/378), completed with 235 local objects. | |
From https://github.com/NixOS/nixpkgs | |
71adcb757b1..94d1218d44f master -> refs/nixpkgs-review/0 |
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
In file included from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:4:0: | |
aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp: In lambda function: | |
aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:413:31: note: The ABI for passing parameters with 32-byte alignment has changed in GCC 4.6 | |
[=](Vec256<scalar_t> a) { return a.rsqrt(); }); | |
^ | |
../aten/src/ATen/Dispatch.h:13:12: note: in definition of macro ‘AT_PRIVATE_CASE_TYPE’ | |
return __VA_ARGS__(); \ | |
^~~~~~~~~~~ | |
aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:407:3: note: in expansion of macro ‘AT_DISPATCH_FLOATING_AND_COMPLEX_TYPES’ | |
AT_DISPATCH_FLOATING_AND_COMPLEX_TYPES(iter.dtype(), "rsqrt_cpu", [&] { |
OlderNewer