15 lines
156 B
Nix
15 lines
156 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./rust.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# General
|
|
git
|
|
neovim
|
|
nixfmt
|
|
];
|
|
}
|