dotfiles/boxes/wsl-desktop-evo4b5/configuration.nix
2025-05-16 20:06:04 +00:00

24 lines
413 B
Nix

{ 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
file
];
}