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