feat: adds mysd, useful for later maybe

This commit is contained in:
2022-07-04 09:50:23 -05:00
parent 81861d51c7
commit 4759013002
4 changed files with 37 additions and 7 deletions

View File

@@ -5,18 +5,24 @@
nixpkgs.url = "github:NixOS/nixpkgs/release-22.05";
homeManager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
mysd = {
url = "git+ssh://git@gitea.deepak.science:2222/deepak/sd.git";
flake = false;
};
};
outputs = { self, nixpkgs, homeManager, ...}@inputs: {
outputs = { self, nixpkgs, homeManager, mysd, ...}@inputs: {
nixosConfigurations = (
import ./hosts/hosts.nix {
inherit nixpkgs;
inherit homeManager;
inherit inputs;
inherit mysd;
inherit (nixpkgs) lib;
}
);