nix-configs/unstable.nix
2023-01-31 16:43:45 +00:00

14 lines
278 B
Nix

{ config, pkgs, ...}:
let
unstable = import
(builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/master)
# reuse the current configuration
{ config = config.nixpkgs.config; };
in
{
environment.systemPackages = with pkgs; [
unstable.rustc
];
}