mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
19 lines
291 B
Nix
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
|
|
];
|
|
}
|