This commit is contained in:
mjallen18
2026-04-20 19:00:51 -05:00
parent 2fc972ac8a
commit d18f972feb
3 changed files with 98 additions and 7 deletions

View File

@@ -3,6 +3,8 @@
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-25.11";
nixos-wsl.url = "github:nix-community/NixOS-WSL/main";
home-manager-unstable = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs-unstable";
@@ -260,6 +262,15 @@
jovian.nixosModules.jovian
];
};
# ######################################################
# WSL #
# ######################################################
wsl-nixos = {
modules = with inputs; [
nixos-wsl.nixosModules.default
];
};
};
};