mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-11 06:53:03 -04:00
21 lines
373 B
Nix
21 lines
373 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
|
|
];
|
|
}
|