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 + + ]; +}