wsl changes

This commit is contained in:
2026-05-25 14:34:06 +01:00
parent 7d3a5ba4fa
commit d486fa170b
2 changed files with 29 additions and 1 deletions
+14 -1
View File
@@ -4,8 +4,21 @@
... ...
}: { }: {
den.aspects.doloro-wsl = { den.aspects.doloro-wsl = {
nixos = {}: { includes = [
modules.fish
];
nixos = {
config,
pkgs,
...
}: {
users.users.doloro = {
isNormalUser = true;
shell = pkgs.fish;
# hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path;
};
}; };
homeManager = {}: { homeManager = {}: {
}; };
}; };
+15
View File
@@ -0,0 +1,15 @@
{
modules,
den,
inputs,
...
}: {
flake-file.inputs = {
nixos-wsl = "github:nix-community/NixOS-WSL";
};
modules.wsl = {
nixos = {
imports = [inputs.nixos-wsl.nixosModules.default];
};
};
}