tibia - test?
This commit is contained in:
parent
c1cda1c7ac
commit
085a55c307
2 changed files with 11 additions and 3 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
./modules/3dmodel.nix
|
./modules/3dmodel.nix
|
||||||
#./modules/network.nix
|
#./modules/network.nix
|
||||||
#./modules/office.nix
|
#./modules/office.nix
|
||||||
#./modules/tibia.nix
|
./modules/tibia.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nix-gaming = mk_system "x86_64-linux" "nix-gaming" [
|
nix-gaming = mk_system "x86_64-linux" "nix-gaming" [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,14 @@
|
||||||
|
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
tibia = super.tibia.overrideAttrs (old: {
|
||||||
|
src = super.fetchurl {
|
||||||
|
url = "https://correct-url.example.com/tibia.tar.gz";
|
||||||
|
sha256 = "sha256-...";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
# paczki
|
# paczki
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
tibia
|
tibia
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue