mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-25 14:41:44 +00:00
21 lines
391 B
Nix
21 lines
391 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 = "StuPC-WSL";
|
|
custom = {
|
|
mullvad.enable = true;
|
|
mnt_public.enable = true;
|
|
syncthing.enable = false;
|
|
wsl.enable = true;
|
|
};
|
|
|
|
|
|
}
|