nixos/pkgsets/rustpkgs.nix
Kevin Baensch ad76922338
Move pkgsets folder into project root to conform with option naming.
Add simple package filter to auto remove broken packages.
2020-03-27 13:41:24 +01:00

14 lines
200 B
Nix

{ config, pkgs, ... }:
let
stablepkgs = import <nixos-stable> {};
in {
config.machine.pkgsets.rustpkgs.pkgs = with stablepkgs; [
diesel-cli
rustup
rls
carnix
rustracer
];
}