12 lines
177 B
Nix
12 lines
177 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
stablepkgs = import <nixos-stable> {};
|
||
|
in {
|
||
|
config.machine.pkgsets.rustpkgs.pkgs = with stablepkgs; [
|
||
|
rustup
|
||
|
carnix
|
||
|
rustracer
|
||
|
];
|
||
|
}
|