nixos/roles/devel.nix

16 lines
204 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2023-07-28 15:39:50 +03:00
{
2023-07-28 15:39:50 +03:00
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
rustc
cargo
rustup
vscode
clang
llvm
lld
2023-07-29 11:11:45 +03:00
python3Full
2023-07-28 15:39:50 +03:00
];
}