ma source: add mic92 as source

This commit is contained in:
makefu 2018-03-07 15:27:06 +01:00
parent 3ba773c18e
commit 574be59987
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
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
] ]