nixos/hosts/desktop-wsl/default.nix
2025-12-14 04:09:59 +01:00

17 lines
254 B
Nix

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