nixos/hosts/desktop-wsl/default.nix

20 lines
291 B
Nix
Raw Normal View History

2025-12-14 01:55:30 +01:00
{
2025-12-14 04:09:59 +01:00
config = {
2025-12-14 01:55:30 +01:00
fireproof = {
hostname = "desktop-wsl";
username = "nickolaj";
work.enable = true;
dev.enable = true;
2025-12-14 04:09:59 +01:00
wsl.enable = true;
2025-12-14 01:55:30 +01:00
};
2025-12-15 00:08:41 +01:00
wsl.usbip.autoAttach = ["1-9"];
2025-12-14 01:55:30 +01:00
system.stateVersion = "25.11";
};
2025-12-14 02:57:03 +01:00
imports = [
./ssh.nix
];
2025-12-14 01:55:30 +01:00
}