dotfiles/nix/hosts/PW05CH3L/default.nix

22 lines
238 B
Nix
Raw Normal View History

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