dotfiles/nix/hosts/PW05CH3L/default.nix
Oliver Davies 37ee30dfc0 Add syncthing via NixOS
Adding it via Home Manager doesn't work, presumably due to WSL.
2025-01-07 21:08:11 +00:00

24 lines
275 B
Nix

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