diff --git a/boxes/wsl-desktop-evo4b5/configuration.nix b/boxes/wsl-desktop-evo4b5/configuration.nix index 0c09b80..b32c56d 100644 --- a/boxes/wsl-desktop-evo4b5/configuration.nix +++ b/boxes/wsl-desktop-evo4b5/configuration.nix @@ -1,21 +1,23 @@ -{pkgs, ...}: { - imports = [ - ../../common/users/meyer-wsl - ../../common/systemModules/nix.nix - ]; - wsl = { - defaultUser = "meyer"; - enable = true; - wslConf = { - network = { - hostname = "wsl-desktop-evo4b5"; - }; - }; - }; - system.stateVersion = "24.05"; - programs.zsh.enable = true; - environment.systemPackages = with pkgs; [ +{ pkgs, ... }: +{ + imports = [ + ../../common/users/meyer-wsl + ../../common/systemModules/nix.nix + ]; + wsl = { + defaultUser = "meyer"; + enable = true; + wslConf = { + network = { + hostname = "wsl-desktop-evo4b5"; + }; + }; + }; + system.stateVersion = "24.05"; + programs.zsh.enable = true; + environment.systemPackages = with pkgs; [ gcc clang - ]; + ripgrep + ]; }