Files
vmimages/hosts/go3-wsl/default.nix
2023-03-09 05:00:20 +00:00

21 lines
390 B
Nix

{ lib, pkgs, config, inputs, ... }: {
imports = [
../common.nix
../user-sstent.nix
inputs.nixos-wsl.nixosModules.wsl
];
# system.stateVersion = "22.11";
nixpkgs.hostPlatform.system = "x86_64-linux";
networking.hostName = "go3-wsl";
custom = {
mullvad.enable = true;
mnt_public.enable = true;
syncthing.enable = true;
wsl.enable = true;
};
}