From b94642689652d1b9840b9a98ac6774442f0fe058 Mon Sep 17 00:00:00 2001 From: Sasza Stanczew Date: Sun, 15 Feb 2026 14:03:56 +0100 Subject: [PATCH] =?UTF-8?q?Tibia=20-=20plus=20minus=20dzia=C5=82aj=C4=85ca?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flake.lock | 48 +++++++++++++++++++++++++++++++++++++++++++++++ modules/tibia.nix | 5 +---- 2 files changed, 49 insertions(+), 4 deletions(-) create mode 100644 flake.lock diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..1fa0726 --- /dev/null +++ b/flake.lock @@ -0,0 +1,48 @@ +{ + "nodes": { + "home-manager": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1771132481, + "narHash": "sha256-Tc+YqZ/Q1K35vJK4ji4RbLB/qKGcEq6yh7p4CKoZF60=", + "owner": "nix-community", + "repo": "home-manager", + "rev": "1e53254671f36cb7d0e2dcca08730f066d5e69b4", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "home-manager", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1771008912, + "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "a82ccc39b39b621151d6732718e3e250109076fa", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "home-manager": "home-manager", + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/modules/tibia.nix b/modules/tibia.nix index 2702494..a69c7c5 100644 --- a/modules/tibia.nix +++ b/modules/tibia.nix @@ -2,10 +2,7 @@ nixpkgs.overlays = [ (self: super: { tibia = super.tibia.overrideAttrs (old: { - src = super.fetchurl { - url = "https://correct-url.example.com/tibia.tar.gz"; - sha256 = "sha256-..."; - }; + src = builtins.path { path = "/home/sasza/Gry/tibia.x64.tar.gz"; name = "tibia.tar.gz"; }; }); }) ];