Move WSL from standalone Home Manager to NixOS

This commit is contained in:
Oliver Davies 2024-12-30 15:41:43 +00:00
parent d1e0abf4c5
commit c5afed5767
10 changed files with 324 additions and 92 deletions

View file

@ -0,0 +1,14 @@
{ username, ... }:
{
imports = [
../common
./configuration.nix
];
wsl = {
enable = true;
defaultUser = username;
};
}