summaryrefslogtreecommitdiff
path: root/hosts/wsl/default.nix
blob: 9ccfc311813d32e0a3e004fecd107262dca98ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
  ];
}