16 lines
305 B
Nix
16 lines
305 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/modules/mizukios/machine.nix"
|
|
"${inputs.self}/modules/mizukios/features/remote/authorized-keys.nix"
|
|
];
|
|
|
|
wsl.enable = true;
|
|
wsl.defaultUser = "imnyang";
|
|
|
|
networking = {
|
|
hostName = "ribbon";
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|