nixconf/flake.nix
Deepak 52da393005
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good
feat: nixoswsl fixes including some updates
2023-09-15 00:07:34 -05:00

37 lines
705 B
Nix

{
description = "Configuration v1";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
homeManager = {
url = "github:nix-community/home-manager";
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: {
nixosConfigurations = (
import ./hosts/hosts.nix {
inherit nixpkgs;
inherit homeManager;
inherit inputs;
inherit mysd;
inherit (nixpkgs) lib;
inherit NixOS-WSL;
}
);
};
}