Browse Source

actually fixed nix pinning

master
Shaun Kerr 5 years ago
parent
commit
ede0dc65d7
2 changed files with 6 additions and 7 deletions
  1. +1
    -1
      archive.md
  2. +5
    -6
      rf.nix

+ 1
- 1
archive.md View File

@@ -10,7 +10,7 @@ you access archives and find:


and make me very sad. and make me very sad.


> ~full disclosure, the only reason this page still exists is because of the netrunner joke. im pretty sure the front page shows every post anyway.~
> ~~full disclosure, the only reason this page still exists is because of the netrunner joke. im pretty sure the front page shows every post anyway.~~


> turns out im not quite as stupid as i thought and worked out how monads work so i could limit front page to a few posts. this page is back in business baby! > turns out im not quite as stupid as i thought and worked out how monads work so i could limit front page to a few posts. this page is back in business baby!




+ 5
- 6
rf.nix View File

@@ -1,10 +1,9 @@
let let
inherit (import <nixpkgs> {}) fetchFromGitHub;
np = fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "d7c0d9a7f83b7f80e08888c040ea8a2ab7ca5f71";
sha256 = "0vb7ikjscrp2rw0dfw6pilxqpjm50l5qg2x2mn1vfh93dkl2aan7";
rev = "d7c0d9a7f83b7f80e08888c040ea8a2ab7ca5f71";
np = builtins.fetchTarball {
url = https://github.com/nixos/nixpkgs/archive/$rev.tar.gz;
sha256 = "1i5a0si7m80w1a987crm9xmbin35jpmdcsk3113xxp9xcw0v23rn";
}; };
config = { config = {
packageOverrides = pkgs: rec { packageOverrides = pkgs: rec {


Loading…
Cancel
Save