nixos/modules/common/default.nix

17 lines
222 B
Nix
Raw Normal View History

{ config, lib, pkgs, ...}:
{
config =
let
stateVersion = "23.11";
in
{
environment.systemPackages = with pkgs; [
git
vim
wget
curl
vscode
];
};
}