add overlay to flake

This commit is contained in:
Vinzenz Schroeter 2025-10-12 13:41:36 +02:00
parent 5e284cf146
commit f814eeedc1
3 changed files with 13 additions and 2 deletions

2
.gitignore vendored
View file

@ -5,3 +5,5 @@ client
*.sarif *.sarif
.direnv .direnv
out out
result
.vscode

View file

@ -51,6 +51,7 @@
}; };
} }
); );
devShells = forAllSystems ( devShells = forAllSystems (
{ {
pkgs, pkgs,
@ -138,6 +139,14 @@
} }
); );
nixosModules.default = {
nixpkgs.overlays = [ self.overlays.default ];
};
overlays.default = final: prev: {
servicepoint-tanks = self.packages."${prev.system}".servicepoint-tanks;
};
formatter = forAllSystems ({ pkgs, ... }: pkgs.nixfmt-tree); formatter = forAllSystems ({ pkgs, ... }: pkgs.nixfmt-tree);
}; };
} }

View file

@ -16,8 +16,8 @@
} }
}, },
"ServicePointDisplay": { "ServicePointDisplay": {
//"Hostname": "172.23.42.29", "Hostname": "172.23.42.29",
"Hostname": "127.0.0.1", //"Hostname": "127.0.0.1",
"Port": 2342 "Port": 2342
}, },
"GameRules": { "GameRules": {