feat: removes mysd

This commit is contained in:
2023-09-27 12:19:37 -05:00
parent b7d9e0ba7e
commit 39b6074d99
4 changed files with 3 additions and 31 deletions

View File

@@ -9,24 +9,19 @@
inputs.nixpkgs.follows = "nixpkgs";
};
mysd = {
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, NixOS-WSL, ...}@inputs: {
outputs = { self, nixpkgs, homeManager, NixOS-WSL, ...}@inputs: {
nixosConfigurations = (
import ./hosts/hosts.nix {
inherit nixpkgs;
inherit homeManager;
inherit inputs;
inherit mysd;
inherit (nixpkgs) lib;
inherit NixOS-WSL;
}