summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-10-09 20:18:56 +0000
committerMike Vink <mike1994vink@gmail.com>2023-10-09 20:18:56 +0000
commit1de751c8e633fbe32c5cfd09aa5dff1f6bdf0fa1 (patch)
treeb22c2ec6f2d08f44fd354020fd6b6953bb0c84df /machines
parentdeb40699e1870480b45550d03a9eda52a6cbaffd (diff)
fixup
Diffstat (limited to 'machines')
-rw-r--r--machines/wsl.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/machines/wsl.nix b/machines/wsl.nix
index 77c3c74..7d428a7 100644
--- a/machines/wsl.nix
+++ b/machines/wsl.nix
@@ -5,8 +5,15 @@
inputs.nixos-wsl.nixosModules.default
];
- wsl.enable = true;
- wsl.defaultUser = "mike";
+ environment.systemPackages = with pkgs; [
+ git
+ ];
+
+ wsl = {
+ enable = true;
+ defaultUser = "mike";
+ wslConf.generateResolveConf = false;
+ };
system.stateVersion = "23.05";
virtualisation.docker.enable = true;
}