15 lines
145 B
Nix
15 lines
145 B
Nix
{ username, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common
|
|
|
|
./configuration.nix
|
|
];
|
|
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = username;
|
|
};
|
|
}
|