mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
readme: use builtins.fetchGit to follow master
This commit is contained in:
parent
4e466eaf05
commit
c3af2ddcf2
1 changed files with 2 additions and 4 deletions
|
@ -14,10 +14,9 @@ create a krops.nix somewhere
|
|||
```
|
||||
let
|
||||
#krops = ./.;
|
||||
krops = (import <nixpkgs> {}).fetchgit {
|
||||
krops = builtins.fetchGit {
|
||||
url = https://cgit.krebsco.de/krops/;
|
||||
rev = "3022582ade8049e6ccf18f358cedb996d6716945";
|
||||
sha256 = "0k3zhv2830z4bljcdvf6ciwjihk2zzcn9y23p49c6sba5hbsd6jb";
|
||||
ref = "master";
|
||||
};
|
||||
|
||||
lib = import "${krops}/lib";
|
||||
|
@ -27,7 +26,6 @@ let
|
|||
nixpkgs.git = {
|
||||
ref = "4b4bbce199d3b3a8001ee93495604289b01aaad3";
|
||||
url = https://github.com/NixOS/nixpkgs;
|
||||
|
||||
};
|
||||
nixos-config.file = toString (pkgs.writeText "nixos-config" ''
|
||||
{ pkgs, ... }: {
|
||||
|
|
Loading…
Reference in a new issue