This commit is contained in:
2025-04-24 14:14:55 +00:00
parent 8d51eaa24a
commit 6d490d8864
13 changed files with 186 additions and 15 deletions

View File

@@ -0,0 +1,24 @@
{
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 = "StuMini-WSL";
services.openssh.enable = true;
custom = {
mullvad.enable = true;
mnt_public.enable = false;
syncthing.enable = true;
wsl.enable = true;
};
}

View File

@@ -56,7 +56,7 @@
virtualisation.docker.enable = true;
# Enable nix flakes
nix.package = pkgs.nixFlakes;
nix.package = pkgs.nixVersions.stable;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';