feat: adds mysd, useful for later maybe
This commit is contained in:
14
flake.nix
14
flake.nix
@@ -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;
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user