nix-dots/machines/work/configuration.nix

23 lines
359 B
Nix

{pkgs, ...}: {
wsl = {
enable = true;
defaultUser = "michael";
interop.includePath = false;
};
environment.systemPackages = with pkgs; [
nvim-custom
];
networking.hostName = "work";
my.zsh.enable = true;
hm.imports = [
../../user/modules/git.nix
];
system.stateVersion = "24.05";
hm.home.stateVersion = "24.05";
}