37 lines
693 B
Nix
37 lines
693 B
Nix
|
{ lib, pkgs, config, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
nixos-wsl.nixosModules.wsl
|
||
|
];
|
||
|
|
||
|
wsl = {
|
||
|
enable = true;
|
||
|
automountPath = "/mnt";
|
||
|
defaultUser = "sako";
|
||
|
startMenuLaunchers = true;
|
||
|
|
||
|
# Native systemd for wsl
|
||
|
nativeSystemd = true;
|
||
|
|
||
|
# Enable native Docker support
|
||
|
# docker-native.enable = true;
|
||
|
|
||
|
# Enable integration with Docker Desktop (needs to be installed)
|
||
|
# docker-desktop.enable = true;
|
||
|
|
||
|
};
|
||
|
|
||
|
users.users.sako.isNormalUser = true;
|
||
|
|
||
|
networking.hostName = "sakowsl";
|
||
|
|
||
|
# Enable nix flakes
|
||
|
nix.package = pkgs.nixFlakes;
|
||
|
nix.extraOptions = ''
|
||
|
experimental-features = nix-command flakes
|
||
|
'';
|
||
|
|
||
|
system.stateVersion = "22.05";
|
||
|
}
|