Update nix init scripts

This commit is contained in:
Lukas Cech
2025-01-21 17:36:23 +01:00
parent 367e7ff45c
commit 802eba9819
3 changed files with 51 additions and 7 deletions
@@ -0,0 +1,21 @@
{
inputs = {
nix.url = "git+ssh://git@git.investbay.dev/devops/nix?branch=main";
};
outputs = { self, nix }: {
formatter = nix.formatter;
devShells = nix.lib.forAllSystems (pkgs: {
default = pkgs.devshell.mkShell {
name = "investbay";
packages = with pkgs; [
];
commands = [];
};
});
};
}
+21
View File
@@ -0,0 +1,21 @@
{
inputs = {
nix.url = "git+ssh://git@bitbucket.org/yourpass/nix";
};
outputs = { self, nix }: {
formatter = nix.formatter;
devShells = nix.lib.forAllSystems (pkgs: {
default = pkgs.devshell.mkShell {
name = "yp";
packages = with pkgs; [
];
commands = [];
};
});
};
}