mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 15:21:15 -05:00
16 lines
222 B
Nix
16 lines
222 B
Nix
{ config, lib, pkgs, ...}:
|
|
{
|
|
config =
|
|
let
|
|
stateVersion = "23.11";
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
vim
|
|
wget
|
|
curl
|
|
vscode
|
|
];
|
|
};
|
|
}
|