9 lines
199 B
Nix
9 lines
199 B
Nix
|
|
{ inputs, ... }:
|
||
|
|
{
|
||
|
|
# Example: adelie host using github:nix-community/NixOS-WSL
|
||
|
|
den.aspects.adelie.nixos = {
|
||
|
|
imports = [ inputs.nixos-wsl.nixosModules.default ];
|
||
|
|
wsl.enable = true;
|
||
|
|
};
|
||
|
|
}
|