mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-26 15:12:14 +00:00
27 lines
506 B
Nix
27 lines
506 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../common.nix
|
|
../user-sstent.nix
|
|
inputs.nixos-wsl.nixosModules.wsl
|
|
];
|
|
# ++ (builtins.attrValues outputs.nixosModules);
|
|
|
|
# system.stateVersion = "22.11";
|
|
nixpkgs.hostPlatform.system = "x86_64-linux";
|
|
networking.hostName = "StuPC-WSL";
|
|
services.openssh.enable = true;
|
|
# custom = {
|
|
# mullvad.enable = true;
|
|
# mnt_public.enable = true;
|
|
# syncthing.enable = true;
|
|
# wsl.enable = true;
|
|
# };
|
|
}
|