nixos/hosts/desktop-wsl/default.nix
2025-12-15 00:08:41 +01:00

19 lines
291 B
Nix

{
config = {
fireproof = {
hostname = "desktop-wsl";
username = "nickolaj";
work.enable = true;
dev.enable = true;
wsl.enable = true;
};
wsl.usbip.autoAttach = ["1-9"];
system.stateVersion = "25.11";
};
imports = [
./ssh.nix
];
}