dotfiles/nix/hosts/PW05CH3L/default.nix
2024-12-31 10:53:48 +00:00

21 lines
213 B
Nix

{ username, ... }:
{
imports = [
../common
./configuration.nix
];
features = {
cli = {
docker.enable = true;
};
};
wsl = {
enable = true;
defaultUser = username;
};
}