diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-09 14:49:29 +0000 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-09 14:49:29 +0000 |
| commit | 8703a0b007e17406a3d84a5de6831ced7a6f19f6 (patch) | |
| tree | d66a8a90df0ebb6d33f8fed66fd44a2a3f351700 | |
| parent | b48e964a9c1cfb5fed8fcf1f8844376384f88598 (diff) | |
fixup
| -rw-r--r-- | flake.nix | 4 | ||||
| -rw-r--r-- | machines/wsl.nix | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -8,6 +8,10 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + nixos-wsl = { + url = "github:nix-community/NixOS-WSL"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = inputs@{ diff --git a/machines/wsl.nix b/machines/wsl.nix index d5ea21c..77c3c74 100644 --- a/machines/wsl.nix +++ b/machines/wsl.nix @@ -1,8 +1,8 @@ -{ config, lib, pkgs, ... }: +{ inputs, config, lib, pkgs, ... }: { imports = [ - <nixos-wsl/modules> + inputs.nixos-wsl.nixosModules.default ]; wsl.enable = true; |
