mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
17 lines
219 B
Nix
17 lines
219 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
environment.systemPackages = with pkgs; [
|
|
jetbrains.clion
|
|
rustc
|
|
cargo
|
|
rustup
|
|
vscode
|
|
clang
|
|
llvm
|
|
lld
|
|
python3Full
|
|
];
|
|
}
|