summaryrefslogtreecommitdiffstats
path: root/krebs/1systems/onebutton/source.nix
blob: 8f25881c9fc600498cc61f4b82dcc57e82b358bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <stockholm/lib>;
let
  pkgs = import <nixpkgs> {};
  nixpkgs = pkgs.fetchFromGitHub {
    owner = "nixos";
    repo = "nixpkgs-channels";
    rev = "6c064e6b"; # only binary cache for unstable arm6
    sha256 = "1rqzh475xn43phagrr30lb0fd292c1s8as53irihsnd5wcksnbyd";
  };
in import <stockholm/krebs/source.nix> {
  name = "onebutton";
  override.nixpkgs = mkForce {
    file = toString nixpkgs;
  };

}