ma source: add mic92 as source

This commit is contained in:
makefu 2018-03-07 15:27:06 +01:00
parent 4889657372
commit 52ae57500d
2 changed files with 10 additions and 0 deletions

View file

@ -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;
} }

View file

@ -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
] ]