mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-21 09:44:35 +05:30
11 lines
106 B
Nix
11 lines
106 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Rust setup
|
|
# rustup
|
|
rustc
|
|
cargo
|
|
];
|
|
}
|