fix(wsl2): use shared Home Manager configuration

This commit is contained in:
Oliver Davies 2023-08-09 21:43:47 +01:00
parent 0c4b2d691d
commit 227dff7fd1
3 changed files with 13 additions and 23 deletions

View file

@ -8,10 +8,11 @@
outputs = inputs@{ flake-parts, self, ... }:
let
system = "x86_64-linux";
username = "opdavies";
nixos-system = import ./system/nixos { inherit inputs username; };
wsl-system = import ./system/wsl2 { inherit inputs username; };
wsl-system = import ./system/wsl2 { inherit inputs system username; };
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];