26 lines
308 B
Nix
26 lines
308 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with lib.wyrdgard;
|
|
{
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = config.wyrdgard.user.name;
|
|
};
|
|
|
|
wyrdgard = {
|
|
submodules.basics-wsl = enabled;
|
|
|
|
security = {
|
|
gpg = enabled;
|
|
sops = enabled;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|