rust-iot: setup
This commit is contained in:
parent
f0e74ba8f6
commit
1f67f58a81
2 changed files with 18 additions and 0 deletions
|
@ -21,6 +21,10 @@
|
|||
password = lib.fileContents <secrets/zigbee/password>;
|
||||
acl = [ "topic readwrite #" ];
|
||||
};
|
||||
rust-iot = {
|
||||
password = "password"
|
||||
acl = [ "topic readwrite #" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
let unstable = import <nixpkgs-unstable> { };
|
||||
in {
|
||||
|
||||
# overlay included
|
||||
nixpkgs.overlays = [ (import <mozilla-overlay/rust-overlay.nix>) ];
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
nur = import (builtins.fetchTarball
|
||||
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
|
@ -12,8 +15,19 @@ in {
|
|||
environment.systemPackages = with pkgs;
|
||||
[
|
||||
bitwig-studio
|
||||
sononym-crawler
|
||||
|
||||
# rust development environment
|
||||
rustup
|
||||
jetbrains.clion
|
||||
|
||||
|
||||
# python
|
||||
python3Full
|
||||
#unstable.pypi2nix
|
||||
|
||||
#nur.repos.mic92.nixos-shell
|
||||
|
||||
];
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue