···11+# Edit this configuration file to define what should be installed on
22+# your system. Help is available in the configuration.nix(5) man page, on
33+# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
44+55+# NixOS-WSL specific options are documented on the NixOS-WSL repository:
66+# https://github.com/nix-community/NixOS-WSL
77+88+{ config, lib, pkgs, ... }:
99+1010+{
1111+ wsl.enable = true;
1212+ wsl.defaultUser = "vali";
1313+1414+ environment.systemPackages = with pkgs; [
1515+ wget
1616+ git
1717+ lazygit
1818+ php83
1919+ php83Packages.composer
2020+ nodejs_20
2121+ ];
2222+2323+ # This value determines the NixOS release from which the default
2424+ # settings for stateful data, like file locations and database versions
2525+ # on your system were taken. It's perfectly fine and recommended to leave
2626+ # this value at the release version of the first install of this system.
2727+ # Before changing this value read the documentation for this option
2828+ # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
2929+ system.stateVersion = "24.05"; # Did you read the comment?
3030+}