1
0
Fork 0
nixos/pkgsets/rustpkgs.nix

14 lines
200 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
stablepkgs = import <nixos-stable> {};
in {
config.machine.pkgsets.rustpkgs.pkgs = with stablepkgs; [
2020-03-23 10:10:31 +01:00
diesel-cli
rustup
2020-03-23 10:10:31 +01:00
rls
carnix
rustracer
];
}