ecbfc93279
this avoids cache misses and super expensive rebuilds on the raspi2 itself
14 lines
318 B
Nix
14 lines
318 B
Nix
with import <stockholm/lib>;
|
|
let
|
|
pkgs = import <nixpkgs> {};
|
|
nixpkgs = builtins.fetchTarball {
|
|
url = https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
|
|
};
|
|
in import <stockholm/krebs/source.nix> {
|
|
name = "onebutton";
|
|
override.nixpkgs = mkForce {
|
|
file = toString nixpkgs;
|
|
};
|
|
|
|
}
|