feat: nixoswsl fixes including some updates
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2023-09-15 00:07:34 -05:00
parent 2feeab3103
commit 52da393005
25 changed files with 211 additions and 1042 deletions

View File

@@ -13,9 +13,13 @@
url = "git+ssh://git@gitea.deepak.science:2222/deepak/sd.git";
flake = false;
};
NixOS-WSL = {
url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, homeManager, mysd, ...}@inputs: {
outputs = { self, nixpkgs, homeManager, mysd, NixOS-WSL, ...}@inputs: {
nixosConfigurations = (
import ./hosts/hosts.nix {
@@ -24,6 +28,7 @@
inherit inputs;
inherit mysd;
inherit (nixpkgs) lib;
inherit NixOS-WSL;
}
);