ma source: add mic92 as source
This commit is contained in:
parent
4889657372
commit
52ae57500d
|
@ -3,5 +3,7 @@ import <stockholm/makefu/source.nix> {
|
||||||
full = true;
|
full = true;
|
||||||
python = true;
|
python = true;
|
||||||
hw = true;
|
hw = true;
|
||||||
|
unstable = true;
|
||||||
|
mic92 = true;
|
||||||
# torrent = true;
|
# torrent = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ host@{ name,
|
||||||
, musnix ? false
|
, musnix ? false
|
||||||
, python ? false
|
, python ? false
|
||||||
, unstable ? false #unstable channel checked out
|
, unstable ? false #unstable channel checked out
|
||||||
|
, mic92 ? false
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
builder = if getEnv "dummy_secrets" == "true"
|
builder = if getEnv "dummy_secrets" == "true"
|
||||||
|
@ -85,5 +86,12 @@ in
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(mkIf ( mic92 ) {
|
||||||
|
mic92.git = {
|
||||||
|
url = https://github.com/Mic92/dotfiles/;
|
||||||
|
ref = "48a1f49";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
override
|
override
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue