21 lines
213 B
Nix
21 lines
213 B
Nix
{ username, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common
|
|
|
|
./configuration.nix
|
|
];
|
|
|
|
features = {
|
|
cli = {
|
|
docker.enable = true;
|
|
};
|
|
};
|
|
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = username;
|
|
};
|
|
}
|