From 83277f07f649c844fc5e869c4e92797867e47781 Mon Sep 17 00:00:00 2001 From: Sasza Stanczew Date: Sun, 15 Feb 2026 12:56:52 +0100 Subject: [PATCH] Dodana Tibia do latitude --- flake.nix | 1 + modules/tibia.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 modules/tibia.nix diff --git a/flake.nix b/flake.nix index ce4b939..ce0fd6a 100644 --- a/flake.nix +++ b/flake.nix @@ -33,6 +33,7 @@ ./modules/3dmodel.nix #./modules/network.nix #./modules/office.nix + ./modules/tibia.nix ]; nix-gaming = mk_system "x86_64-linux" "nix-gaming" [ diff --git a/modules/tibia.nix b/modules/tibia.nix new file mode 100644 index 0000000..e4b1a96 --- /dev/null +++ b/modules/tibia.nix @@ -0,0 +1,9 @@ + +{ pkgs, ... }: { + + # paczki + environment.systemPackages = with pkgs; [ + tibia + + ]; +}