summaryrefslogtreecommitdiff
path: root/hosts/wsl
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/wsl')
-rw-r--r--hosts/wsl/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/wsl/default.nix b/hosts/wsl/default.nix
new file mode 100644
index 0000000..9ccfc31
--- /dev/null
+++ b/hosts/wsl/default.nix
@@ -0,0 +1,18 @@
+# WSL
+# System configuration for any wsl instance
+{config, pkgs, inputs, ...}: {
+ imports = [
+ inputs.nixos-wsl.nixosModules.default
+ ];
+
+ # options
+ hostName = "wsl";
+ minimal = true;
+ wsl.enable = true;
+ wsl.defaultUser = config.user;
+
+ # packages
+ environment.systemPackages = with pkgs; [
+ sphinx
+ ];
+}