Add mono to steam packages
This commit is contained in:
parent
4f780fc8a3
commit
4e01a5a74a
1 changed files with 9 additions and 0 deletions
|
@ -48,4 +48,13 @@ in
|
||||||
ACTION=="remove", ENV{ID_VENDOR_ID}=="1050", ENV{ID_MODEL_ID}=="0407", RUN+="${lockscreen-all}"
|
ACTION=="remove", ENV{ID_VENDOR_ID}=="1050", ENV{ID_MODEL_ID}=="0407", RUN+="${lockscreen-all}"
|
||||||
'';
|
'';
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(curr: prev: {
|
||||||
|
steam = prev.steam.override {
|
||||||
|
extraPkgs = pkgs: with pkgs; [
|
||||||
|
mono
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue